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

Unified Diff: chrome/common/metrics_helpers.cc

Issue 3941001: Convert LOG(INFO) to VLOG(1) - chrome/common/. (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
Index: chrome/common/metrics_helpers.cc
===================================================================
--- chrome/common/metrics_helpers.cc (revision 63075)
+++ chrome/common/metrics_helpers.cc (working copy)
@@ -195,15 +195,15 @@
// name. We can then use this logging to find out what histogram name was
// being hashed to a given MD5 value by just running the version of Chromium
// in question with --enable-logging.
- LOG(INFO) << "Metrics: Hash numeric [" << value << "]=["
- << reverse_uint64 << "]";
+ VLOG(1) << "Metrics: Hash numeric [" << value
+ << "]=[" << reverse_uint64 << "]";
return std::string(reinterpret_cast<char*>(digest.a), arraysize(digest.a));
}
std::string MetricsLogBase::CreateBase64Hash(const std::string& string) {
std::string encoded_digest;
if (base::Base64Encode(CreateHash(string), &encoded_digest)) {
- DLOG(INFO) << "Metrics: Hash [" << encoded_digest << "]=[" << string << "]";
+ DVLOG(1) << "Metrics: Hash [" << encoded_digest << "]=[" << string << "]";
return encoded_digest;
}
return std::string();

Powered by Google App Engine
This is Rietveld 408576698