summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 20:56:58 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-21 20:56:58 +0000
commit6662050331dad5db984ac85e8705ff49236dbe51 (patch)
tree2049e320687e2d2d300c5eaddcb5fd13e1ea27f6 /chrome/browser/cocoa
parent51caa7a055589ce0a1808e1e4e17477b3545e027 (diff)
downloadchromium_src-6662050331dad5db984ac85e8705ff49236dbe51.zip
chromium_src-6662050331dad5db984ac85e8705ff49236dbe51.tar.gz
chromium_src-6662050331dad5db984ac85e8705ff49236dbe51.tar.bz2
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
Diffstat (limited to 'chrome/browser/cocoa')
-rw-r--r--chrome/browser/cocoa/install_from_dmg.mm8
-rw-r--r--chrome/browser/cocoa/preferences_window_controller.mm5
2 files changed, 6 insertions, 7 deletions
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.