Index: base/process_util_linux.cc |
diff --git a/base/process_util_linux.cc b/base/process_util_linux.cc |
index c4f206af89ead55c7a54c1537c39244ea58402b8..cf281b48f6c59864e5295cc2e32b5efed320f25c 100644 |
--- a/base/process_util_linux.cc |
+++ b/base/process_util_linux.cc |
@@ -75,6 +75,7 @@ bool ParseProcStats(const std::string& stats_data, |
if (open_parens_idx == std::string::npos || |
close_parens_idx == std::string::npos || |
open_parens_idx > close_parens_idx) { |
+ DLOG(WARNING) << "Failed to find matched parens in '" << stats_data << "'"; |
NOTREACHED(); |
return false; |
} |