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

Unified Diff: chrome/test/live_sync/live_sync_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
Index: chrome/test/live_sync/live_sync_test.cc
===================================================================
--- chrome/test/live_sync/live_sync_test.cc (revision 63075)
+++ chrome/test/live_sync/live_sync_test.cc (working copy)
@@ -270,8 +270,8 @@
LOG(FATAL) << "Failed to set up local python test server";
} else if (!cl->HasSwitch(switches::kSyncServiceURL) &&
cl->HasSwitch(switches::kSyncServerCommandLine)) {
- LOG(FATAL)
- << "Sync server command line must be accompanied by sync service URL.";
+ LOG(FATAL) << "Sync server command line must be accompanied by sync "
+ "service URL.";
}
}
@@ -284,7 +284,7 @@
test_server()->host_port_pair().host().c_str(),
test_server()->host_port_pair().port());
cl->AppendSwitchASCII(switches::kSyncServiceURL, sync_service_url);
- LOG(INFO) << "Started local python test server at " << sync_service_url;
+ VLOG(1) << "Started local python test server at " << sync_service_url;
// TODO(akalin): Set the kSyncNotificationHost switch here once a local python
// notification server is implemented.
@@ -310,8 +310,8 @@
const int kMaxWaitTime = TestTimeouts::live_operation_timeout_ms();
const int kNumIntervals = 15;
if (WaitForTestServerToStart(kMaxWaitTime, kNumIntervals)) {
- LOG(INFO) << "Started local test server at "
- << cl->GetSwitchValueASCII(switches::kSyncServiceURL) << ".";
+ VLOG(1) << "Started local test server at "
+ << cl->GetSwitchValueASCII(switches::kSyncServiceURL) << ".";
return true;
} else {
LOG(ERROR) << "Could not start local test server at "
« no previous file with comments | « chrome/test/live_sync/live_autofill_sync_test.h ('k') | chrome/test/live_sync/profile_sync_service_test_harness.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698