Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8418)

Unified Diff: chrome/common/mac/cfbundle_blocker.mm

Issue 8368018: Convert chrome/common non-debug logs to debug logs. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/logging_chrome.cc ('k') | chrome/common/mac/launchd.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/mac/cfbundle_blocker.mm
===================================================================
--- chrome/common/mac/cfbundle_blocker.mm (revision 107051)
+++ chrome/common/mac/cfbundle_blocker.mm (working copy)
@@ -175,12 +175,12 @@
NSString* bundle_id_print = bundle_id ? bundle_id : @"(nil)";
NSString* version_print = version ? version : @"(nil)";
- LOG(INFO) << "Blocking attempt to load bundle "
- << [bundle_id_print UTF8String]
- << " version "
- << [version_print UTF8String]
- << " at "
- << [path fileSystemRepresentation];
+ DLOG(INFO) << "Blocking attempt to load bundle "
+ << [bundle_id_print UTF8String]
+ << " version "
+ << [version_print UTF8String]
+ << " at "
+ << [path fileSystemRepresentation];
if (error) {
base::mac::ScopedCFTypeRef<CFStringRef> app_bundle_id(
@@ -229,8 +229,8 @@
reinterpret_cast<void**>(
&g_original_underscore_cfbundle_load_executable_and_return_error));
if (err != err_none) {
- LOG(WARNING) << "mach_override _CFBundleLoadExecutableAndReturnError: "
- << err;
+ DLOG(WARNING) << "mach_override _CFBundleLoadExecutableAndReturnError: "
+ << err;
}
}
« no previous file with comments | « chrome/common/logging_chrome.cc ('k') | chrome/common/mac/launchd.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698