| 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;
|
|
|