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

Unified Diff: base/metrics/histogram.cc

Issue 3845002: Convert LOG(INFO) to VLOG(1) - base/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 | « base/message_loop_unittest.cc ('k') | base/nss_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/metrics/histogram.cc
===================================================================
--- base/metrics/histogram.cc (revision 62784)
+++ base/metrics/histogram.cc (working copy)
@@ -81,7 +81,7 @@
if (StatisticsRecorder::dump_on_exit()) {
std::string output;
WriteAscii(true, "\n", &output);
- LOG(INFO) << output;
+ VLOG(1) << output;
}
// Just to make sure most derived class did this properly...
@@ -474,8 +474,8 @@
} else if (histogram_type == BOOLEAN_HISTOGRAM) {
render_histogram = BooleanHistogram::FactoryGet(histogram_name, flags);
} else {
- LOG(ERROR) << "Error Deserializing Histogram Unknown histogram_type: " <<
- histogram_type;
+ LOG(ERROR) << "Error Deserializing Histogram Unknown histogram_type: "
+ << histogram_type;
return false;
}
@@ -485,8 +485,8 @@
DCHECK(histogram_type == render_histogram->histogram_type());
if (render_histogram->flags() & kIPCSerializationSourceFlag) {
- DLOG(INFO) << "Single process mode, histogram observed and not copied: " <<
- histogram_name;
+ DVLOG(1) << "Single process mode, histogram observed and not copied: "
+ << histogram_name;
} else {
DCHECK(flags == (flags & render_histogram->flags()));
render_histogram->AddSampleSet(sample);
@@ -814,7 +814,7 @@
if (dump_on_exit_) {
std::string output;
WriteGraph("", &output);
- LOG(INFO) << output;
+ VLOG(1) << output;
}
// Clean up.
delete histograms_;
« no previous file with comments | « base/message_loop_unittest.cc ('k') | base/nss_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698