summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_storage_impl.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-19 00:43:01 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-19 00:43:01 +0000
commitc0b4b82cf48b350585d1158a5bd883fbf6b164e1 (patch)
tree67e5e27e906d2d9753c982bc5a5bfd3b5b6ddeb5 /webkit/appcache/appcache_storage_impl.cc
parent0c3a20c8c81bb8d2a9db575cb45589abb9c0f6f8 (diff)
downloadchromium_src-c0b4b82cf48b350585d1158a5bd883fbf6b164e1.zip
chromium_src-c0b4b82cf48b350585d1158a5bd883fbf6b164e1.tar.gz
chromium_src-c0b4b82cf48b350585d1158a5bd883fbf6b164e1.tar.bz2
Convert LOG(INFO) to VLOG(1) - webkit/.
BUG=none TEST=none Review URL: http://codereview.chromium.org/3822006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63001 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_storage_impl.cc')
-rw-r--r--webkit/appcache/appcache_storage_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_storage_impl.cc b/webkit/appcache/appcache_storage_impl.cc
index 2231234..518f840 100644
--- a/webkit/appcache/appcache_storage_impl.cc
+++ b/webkit/appcache/appcache_storage_impl.cc
@@ -882,7 +882,7 @@ void AppCacheStorageImpl::Initialize(const FilePath& cache_directory,
void AppCacheStorageImpl::Disable() {
if (is_disabled_)
return;
- LOG(INFO) << "Disabling appcache storage.";
+ VLOG(1) << "Disabling appcache storage.";
is_disabled_ = true;
origins_with_groups_.clear();
working_set()->Disable();
@@ -1318,7 +1318,7 @@ void AppCacheStorageImpl::OnDiskCacheInitialized(int rv) {
// session should start with a clean slate.
Disable();
if (!is_incognito_) {
- LOG(INFO) << "Deleting existing appcache data and starting over.";
+ VLOG(1) << "Deleting existing appcache data and starting over.";
AppCacheThread::PostTask(AppCacheThread::db(), FROM_HERE,
NewRunnableFunction(DeleteDirectory, cache_directory_));
}