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

Unified Diff: chrome/test/startup/startup_test.cc

Issue 3915004: Convert LOG(INFO) to VLOG(1) - chrome/test/. (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 | « chrome/test/startup/shutdown_test.cc ('k') | chrome/test/test_launcher/test_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/startup/startup_test.cc
===================================================================
--- chrome/test/startup/startup_test.cc (revision 63075)
+++ chrome/test/startup/startup_test.cc (working copy)
@@ -110,13 +110,12 @@
if (env->GetVar(env_vars::kStartupTestsNumCycles, &numCyclesEnv) &&
base::StringToInt(numCyclesEnv, &numCycles)) {
if (numCycles <= kNumCyclesMax) {
- LOG(INFO) << env_vars::kStartupTestsNumCycles
- << " set in environment, so setting numCycles to "
- << numCycles;
+ VLOG(1) << env_vars::kStartupTestsNumCycles
+ << " set in environment, so setting numCycles to " << numCycles;
} else {
- LOG(INFO) << env_vars::kStartupTestsNumCycles
- << " is higher than the max, setting numCycles to "
- << kNumCyclesMax;
+ VLOG(1) << env_vars::kStartupTestsNumCycles
+ << " is higher than the max, setting numCycles to "
+ << kNumCyclesMax;
numCycles = kNumCyclesMax;
}
}
« no previous file with comments | « chrome/test/startup/shutdown_test.cc ('k') | chrome/test/test_launcher/test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698