diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:57:12 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:57:12 +0000 |
commit | 8e96e50baaa3cf984eb64355391d7ec48a958e81 (patch) | |
tree | af80bc851bc4421a5e159c3bd1bc1cb31ee21f55 /chrome/browser/browser_main_win.cc | |
parent | 6662050331dad5db984ac85e8705ff49236dbe51 (diff) | |
download | chromium_src-8e96e50baaa3cf984eb64355391d7ec48a958e81.zip chromium_src-8e96e50baaa3cf984eb64355391d7ec48a958e81.tar.gz chromium_src-8e96e50baaa3cf984eb64355391d7ec48a958e81.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - misc. chrome/browser/*.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/4008001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63421 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_main_win.cc')
-rw-r--r-- | chrome/browser/browser_main_win.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/browser_main_win.cc b/chrome/browser/browser_main_win.cc index ef1dc17..65a991f 100644 --- a/chrome/browser/browser_main_win.cc +++ b/chrome/browser/browser_main_win.cc @@ -92,15 +92,15 @@ int DoUninstallTasks(bool chrome_still_running) { if (ret != ResultCodes::UNINSTALL_USER_CANCEL) { // The following actions are just best effort. - LOG(INFO) << "Executing uninstall actions"; + VLOG(1) << "Executing uninstall actions"; if (!FirstRun::RemoveSentinel()) - LOG(INFO) << "Failed to delete sentinel file."; + VLOG(1) << "Failed to delete sentinel file."; // We want to remove user level shortcuts and we only care about the ones // created by us and not by the installer so |alternate| is false. if (!ShellUtil::RemoveChromeDesktopShortcut(ShellUtil::CURRENT_USER, false)) - LOG(INFO) << "Failed to delete desktop shortcut."; + VLOG(1) << "Failed to delete desktop shortcut."; if (!ShellUtil::RemoveChromeQuickLaunchShortcut(ShellUtil::CURRENT_USER)) - LOG(INFO) << "Failed to delete quick launch shortcut."; + VLOG(1) << "Failed to delete quick launch shortcut."; } return ret; } |