diff options
Diffstat (limited to 'base/scoped_temp_dir.cc')
-rw-r--r-- | base/scoped_temp_dir.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/scoped_temp_dir.cc b/base/scoped_temp_dir.cc index 6a51d6d..6af4d75 100644 --- a/base/scoped_temp_dir.cc +++ b/base/scoped_temp_dir.cc @@ -59,10 +59,13 @@ bool ScopedTempDir::Set(const FilePath& path) { } bool ScopedTempDir::Delete() { + LOG(WARNING) << "Deleting " << path_.LossyDisplayName() << " " << this; if (path_.empty()) return false; + file_util::g_bug108724_debug = true; bool ret = file_util::Delete(path_, true); + file_util::g_bug108724_debug = false; if (ret) { // We only clear the path if deleted the directory. path_.clear(); |