Index: base/linux_util.cc |
=================================================================== |
--- base/linux_util.cc (revision 106858) |
+++ base/linux_util.cc (working copy) |
@@ -88,7 +88,7 @@ |
const ssize_t n = readlink(path, buf, sizeof(buf) - 1); |
if (n == -1) { |
if (log) { |
- LOG(WARNING) << "Failed to read the inode number for a socket from /proc" |
+ DLOG(WARNING) << "Failed to read the inode number for a socket from /proc" |
"(" << errno << ")"; |
} |
return false; |
@@ -97,8 +97,8 @@ |
if (memcmp(kSocketLinkPrefix, buf, sizeof(kSocketLinkPrefix) - 1)) { |
if (log) { |
- LOG(WARNING) << "The descriptor passed from the crashing process wasn't a" |
- " UNIX domain socket."; |
+ DLOG(WARNING) << "The descriptor passed from the crashing process wasn't " |
+ " a UNIX domain socket."; |
} |
return false; |
} |
@@ -111,8 +111,8 @@ |
if (inode_ul == ULLONG_MAX) { |
if (log) { |
- LOG(WARNING) << "Failed to parse a socket's inode number: the number was " |
- "too large. Please report this bug: " << buf; |
+ DLOG(WARNING) << "Failed to parse a socket's inode number: the number " |
+ "was too large. Please report this bug: " << buf; |
} |
return false; |
} |
@@ -200,7 +200,7 @@ |
DIR* proc = opendir("/proc"); |
if (!proc) { |
- LOG(WARNING) << "Cannot open /proc"; |
+ DLOG(WARNING) << "Cannot open /proc"; |
return false; |
} |
@@ -262,7 +262,7 @@ |
DIR* task = opendir(buf); |
if (!task) { |
- LOG(WARNING) << "Cannot open " << buf; |
+ DLOG(WARNING) << "Cannot open " << buf; |
return -1; |
} |