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

Unified Diff: chrome/browser/chrome_browser_main.cc

Issue 10246001: VLOG -> DVLOG for uniformity field trials (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main.cc
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
index b95a87e66ef5092daab0f4dd08ac46ce9dae6738..75e0bd40fe21542dc2512980b98895261b813b58 100644
--- a/chrome/browser/chrome_browser_main.cc
+++ b/chrome/browser/chrome_browser_main.cc
@@ -1075,7 +1075,7 @@ void ChromeBrowserMainParts::SetupUniformityFieldTrials() {
const std::string trial_name =
StringPrintf("UMA-Uniformity-Trial-%d-Percent", group_percent);
- VLOG(1) << "Trial name = " << trial_name;
+ DVLOG(1) << "Trial name = " << trial_name;
scoped_refptr<base::FieldTrial> trial(
base::FieldTrialList::FactoryGetFieldTrial(
@@ -1084,7 +1084,7 @@ void ChromeBrowserMainParts::SetupUniformityFieldTrials() {
// default group, which would be group 0.
for (int group_number = 1; group_number < trial_sizes[i]; ++group_number) {
const std::string group_name = StringPrintf("group_%02d", group_number);
- VLOG(1) << " Group name = " << group_name;
+ DVLOG(1) << " Group name = " << group_name;
trial->AppendGroup(group_name, kProbabilityPerGroup);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698