summaryrefslogtreecommitdiffstats
path: root/chrome/common/mac/launchd.mm
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-28 22:49:27 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-28 22:49:27 +0000
commit26f025e36b53b7691dc6cc2eb4db15b225418058 (patch)
tree2103459982819f9461bf004e8aa8f2d9bdbf0e05 /chrome/common/mac/launchd.mm
parent68013c2a6702fd9c72d3a4e3a2772559ce32202c (diff)
downloadchromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.zip
chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.tar.gz
chromium_src-26f025e36b53b7691dc6cc2eb4db15b225418058.tar.bz2
Convert chrome/common non-debug logs to debug logs.
Review URL: http://codereview.chromium.org/8368018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107814 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/mac/launchd.mm')
-rw-r--r--chrome/common/mac/launchd.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/mac/launchd.mm b/chrome/common/mac/launchd.mm
index 8bad675..5abaaa2 100644
--- a/chrome/common/mac/launchd.mm
+++ b/chrome/common/mac/launchd.mm
@@ -44,7 +44,7 @@ NSURL* GetPlistURL(Launchd::Domain domain,
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 @@ bool Launchd::DeletePlist(Domain domain, Type type, CFStringRef name) {
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;
}