diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-20 00:20:37 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-20 00:20:37 +0000 |
commit | fbf7c631d653287099c7e9c659adfecc8721b3ef (patch) | |
tree | a893e6b3f9c2c7c6fa9a1adb2cfab7462e3810d9 /net/disk_cache/backend_impl.cc | |
parent | 654f45e3dd9fb3595b43f73f192b58e63331162f (diff) | |
download | chromium_src-fbf7c631d653287099c7e9c659adfecc8721b3ef.zip chromium_src-fbf7c631d653287099c7e9c659adfecc8721b3ef.tar.gz chromium_src-fbf7c631d653287099c7e9c659adfecc8721b3ef.tar.bz2 |
Disk cache: print out the name of the folders when there's an error
renaming the cache folder.
BUG=122005
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10152002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133094 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/backend_impl.cc')
-rw-r--r-- | net/disk_cache/backend_impl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/disk_cache/backend_impl.cc b/net/disk_cache/backend_impl.cc index cc8dce7..7160061 100644 --- a/net/disk_cache/backend_impl.cc +++ b/net/disk_cache/backend_impl.cc @@ -131,7 +131,8 @@ bool DelayedCacheCleanup(const FilePath& full_path) { } if (!disk_cache::MoveCache(full_path, to_delete)) { - LOG(ERROR) << "Unable to move cache folder"; + LOG(ERROR) << "Unable to move cache folder " << full_path.value() << " to " + << to_delete.value(); return false; } |