From 6662050331dad5db984ac85e8705ff49236dbe51 Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Thu, 21 Oct 2010 20:56:58 +0000 Subject: Convert LOG(INFO) to VLOG(1) - misc. chrome/browser/*/*. BUG=none TEST=none Review URL: http://codereview.chromium.org/4009001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63420 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/cocoa/install_from_dmg.mm | 8 ++++---- chrome/browser/cocoa/preferences_window_controller.mm | 5 ++--- 2 files changed, 6 insertions(+), 7 deletions(-) (limited to 'chrome/browser/cocoa') diff --git a/chrome/browser/cocoa/install_from_dmg.mm b/chrome/browser/cocoa/install_from_dmg.mm index e702e64..df24d5c 100644 --- a/chrome/browser/cocoa/install_from_dmg.mm +++ b/chrome/browser/cocoa/install_from_dmg.mm @@ -393,8 +393,8 @@ bool MaybeInstallFromDiskImage() { if (![file_manager fileExistsAtPath:application_directory isDirectory:&is_directory] || !is_directory) { - LOG(INFO) << "No application directory at " - << [application_directory UTF8String]; + VLOG(1) << "No application directory at " + << [application_directory UTF8String]; return false; } @@ -404,14 +404,14 @@ bool MaybeInstallFromDiskImage() { [application_directory stringByAppendingPathComponent:application_name]; if ([file_manager fileExistsAtPath:target_path]) { - LOG(INFO) << "Something already exists at " << [target_path UTF8String]; + VLOG(1) << "Something already exists at " << [target_path UTF8String]; return false; } NSString* installer_path = [mac_util::MainAppBundle() pathForResource:@"install" ofType:@"sh"]; if (!installer_path) { - LOG(INFO) << "Could not locate install.sh"; + VLOG(1) << "Could not locate install.sh"; return false; } diff --git a/chrome/browser/cocoa/preferences_window_controller.mm b/chrome/browser/cocoa/preferences_window_controller.mm index cc15ac8..a323233 100644 --- a/chrome/browser/cocoa/preferences_window_controller.mm +++ b/chrome/browser/cocoa/preferences_window_controller.mm @@ -1637,9 +1637,8 @@ const int kDisabledIndex = 1; GoogleUpdateSettings::SetCollectStatsConsent(enabled); bool update_pref = GoogleUpdateSettings::GetCollectStatsConsent(); if (enabled != update_pref) { - DLOG(INFO) << - "GENERAL SECTION: Unable to set crash report status to " << - enabled; + DVLOG(1) << "GENERAL SECTION: Unable to set crash report status to " + << enabled; } // Only change the pref if GoogleUpdateSettings::GetCollectStatsConsent // succeeds. -- cgit v1.1