diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-27 01:09:16 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-27 01:09:16 +0000 |
commit | 5044da885d4baa782f5ff150951cda6c7ac31af9 (patch) | |
tree | d11ad06a35203dba73701f747a68f5bc8fcd1b53 /chrome/installer | |
parent | a77e4b19a4055f6aac6e71fa5ed8a9fea20e7aca (diff) | |
download | chromium_src-5044da885d4baa782f5ff150951cda6c7ac31af9.zip chromium_src-5044da885d4baa782f5ff150951cda6c7ac31af9.tar.gz chromium_src-5044da885d4baa782f5ff150951cda6c7ac31af9.tar.bz2 |
Change miscellaneous LOG(INFO)s to VLOG()s that I missed the first time through, either because they were LOG_IF() (which I didn't search for) or they were added during the week I was changing things.
Plus a few misc. cleanup bits.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/4111002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63998 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/setup/setup_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/setup/setup_main.cc b/chrome/installer/setup/setup_main.cc index 93b387e..6d5cbae 100644 --- a/chrome/installer/setup/setup_main.cc +++ b/chrome/installer/setup/setup_main.cc @@ -712,7 +712,7 @@ int WINAPI wWinMain(HINSTANCE instance, HINSTANCE prev_instance, scoped_ptr<installer::Version> installed_version(InstallUtil::GetChromeVersion(system_install)); if (installed_version.get()) - LOG(INFO) << "version on the system: " << installed_version->GetString(); + VLOG(1) << "version on the system: " << installed_version->GetString(); installer_util::InstallStatus install_status = installer_util::UNKNOWN_STATUS; // If --uninstall option is given, uninstall chrome |