Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2156)

Unified Diff: base/scoped_temp_dir.cc

Issue 9371006: Remove log spew from scoped_tempdir.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/scoped_temp_dir.cc
diff --git a/base/scoped_temp_dir.cc b/base/scoped_temp_dir.cc
index 2349d60607d308c17d2c3793145d8268893684e2..9f4bcf40c6db07f5174675087b51916c09246f52 100644
--- a/base/scoped_temp_dir.cc
+++ b/base/scoped_temp_dir.cc
@@ -59,7 +59,6 @@ bool ScopedTempDir::Set(const FilePath& path) {
}
bool ScopedTempDir::Delete() {
- LOG(WARNING) << "Deleting " << path_.LossyDisplayName() << " " << this;
if (path_.empty())
return false;
@@ -67,8 +66,6 @@ bool ScopedTempDir::Delete() {
if (ret) {
// We only clear the path if deleted the directory.
path_.clear();
- } else {
- DLOG(ERROR) << "ScopedTempDir unable to delete " << path_.value();
}
return ret;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698