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

Unified Diff: chrome/common/mac/launchd.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/mac/cfbundle_blocker.mm ('k') | chrome/common/mac/objc_zombie.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/mac/launchd.mm
===================================================================
--- chrome/common/mac/launchd.mm (revision 107051)
+++ chrome/common/mac/launchd.mm (working copy)
@@ -44,7 +44,7 @@
withIntermediateDirectories:YES
attributes:nil
error:&err]) {
- LOG(ERROR) << "GetPlistURL " << base::mac::NSToCFCast(err);
+ DLOG(ERROR) << "GetPlistURL " << base::mac::NSToCFCast(err);
return nil;
}
@@ -161,7 +161,7 @@
if (![[NSFileManager defaultManager] removeItemAtPath:[ns_url path]
error:&err]) {
if ([err code] != NSFileNoSuchFileError) {
- LOG(ERROR) << "DeletePlist: " << base::mac::NSToCFCast(err);
+ DLOG(ERROR) << "DeletePlist: " << base::mac::NSToCFCast(err);
}
return false;
}
« no previous file with comments | « chrome/common/mac/cfbundle_blocker.mm ('k') | chrome/common/mac/objc_zombie.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698