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

Unified Diff: chrome/common/metrics_log_manager.cc

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/metrics_helpers.cc ('k') | chrome/common/multi_process_lock_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/metrics_log_manager.cc
===================================================================
--- chrome/common/metrics_log_manager.cc (revision 107051)
+++ chrome/common/metrics_log_manager.cc (working copy)
@@ -112,9 +112,9 @@
bool success = Bzip2Compress(staged_log_text, &compressed_staged_log_text_);
if (success) {
// Allow security-conscious users to see all metrics logs that we send.
- VLOG(1) << "METRICS LOG: " << staged_log_text;
+ DVLOG(1) << "METRICS LOG: " << staged_log_text;
} else {
- LOG(DFATAL) << "Failed to compress log for transmission.";
+ NOTREACHED() << "Failed to compress log for transmission.";
}
}
« no previous file with comments | « chrome/common/metrics_helpers.cc ('k') | chrome/common/multi_process_lock_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698