summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_database.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_database.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_database.cc')
-rw-r--r--webkit/appcache/appcache_database.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_database.cc b/webkit/appcache/appcache_database.cc
index d7210c4..a4fbefe 100644
--- a/webkit/appcache/appcache_database.cc
+++ b/webkit/appcache/appcache_database.cc
@@ -164,7 +164,7 @@ void AppCacheDatabase::CloseConnection() {
}
void AppCacheDatabase::Disable() {
- LOG(INFO) << "Disabling appcache database.";
+ VLOG(1) << "Disabling appcache database.";
is_disabled_ = true;
ResetConnectionAndTables();
}
@@ -1103,7 +1103,7 @@ void AppCacheDatabase::ResetConnectionAndTables() {
bool AppCacheDatabase::DeleteExistingAndCreateNewDatabase() {
DCHECK(!db_file_path_.empty());
DCHECK(file_util::PathExists(db_file_path_));
- LOG(INFO) << "Deleting existing appcache data and starting over.";
+ VLOG(1) << "Deleting existing appcache data and starting over.";
ResetConnectionAndTables();