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

Unified Diff: base/metrics/histogram_base.cc

Issue 1913803003: Write non-critical log messages only for -v=1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | base/metrics/persistent_histogram_allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/metrics/histogram_base.cc
diff --git a/base/metrics/histogram_base.cc b/base/metrics/histogram_base.cc
index 6a79ae25d1cad9cf04393d32be652bbb1320fada..c2daf3cc55ac142dbf5095da29cfbc83544b658e 100644
--- a/base/metrics/histogram_base.cc
+++ b/base/metrics/histogram_base.cc
@@ -128,8 +128,8 @@ void HistogramBase::EnableActivityReportHistogram(
DCHECK(!report_histogram_);
size_t existing = StatisticsRecorder::GetHistogramCount();
if (existing != 0) {
- DLOG(WARNING) << existing
- << " histograms were created before reporting was enabled.";
+ DVLOG(1) << existing
+ << " histograms were created before reporting was enabled.";
}
std::string name =
« no previous file with comments | « no previous file | base/metrics/persistent_histogram_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698