summaryrefslogtreecommitdiffstats
path: root/base/scoped_temp_dir.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/scoped_temp_dir.cc')
-rw-r--r--base/scoped_temp_dir.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/scoped_temp_dir.cc b/base/scoped_temp_dir.cc
index fc886e5a..6a51d6d 100644
--- a/base/scoped_temp_dir.cc
+++ b/base/scoped_temp_dir.cc
@@ -12,7 +12,7 @@ ScopedTempDir::ScopedTempDir() {
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 @@ bool ScopedTempDir::Delete() {
// 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;