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

Unified Diff: base/scoped_temp_dir.cc

Issue 8368009: Replace most LOG statements with DLOG statements in base. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
Index: base/scoped_temp_dir.cc
===================================================================
--- base/scoped_temp_dir.cc (revision 106774)
+++ base/scoped_temp_dir.cc (working copy)
@@ -12,7 +12,7 @@
ScopedTempDir::~ScopedTempDir() {
if (!path_.empty() && !Delete())
- LOG(WARNING) << "Could not delete temp dir in dtor.";
+ DLOG(WARNING) << "Could not delete temp dir in dtor.";
}
bool ScopedTempDir::CreateUniqueTempDir() {
@@ -67,7 +67,7 @@
// We only clear the path if deleted the directory.
path_.clear();
} else {
- LOG(ERROR) << "ScopedTempDir unable to delete " << path_.value();
+ DLOG(ERROR) << "ScopedTempDir unable to delete " << path_.value();
}
return ret;

Powered by Google App Engine
This is Rietveld 408576698