diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 20:22:07 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 20:22:07 +0000 |
commit | ca8cf5f8032626708e47604d190dbda0ffd8d618 (patch) | |
tree | 4a73ad587be839680e0e0b879ef664558bf3a87a /chrome/test/live_sync/live_sync_test.cc | |
parent | 593df619ff5c865bea2ffdd8927e5462c91318a2 (diff) | |
download | chromium_src-ca8cf5f8032626708e47604d190dbda0ffd8d618.zip chromium_src-ca8cf5f8032626708e47604d190dbda0ffd8d618.tar.gz chromium_src-ca8cf5f8032626708e47604d190dbda0ffd8d618.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - chrome/test/.
Also fix indentation, remove a few unnecessary endls, collapse some append()s into +s, and remove a few extra {}s.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3915004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63253 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/live_sync/live_sync_test.cc')
-rw-r--r-- | chrome/test/live_sync/live_sync_test.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/test/live_sync/live_sync_test.cc b/chrome/test/live_sync/live_sync_test.cc index 6fd16cb..eca363e 100644 --- a/chrome/test/live_sync/live_sync_test.cc +++ b/chrome/test/live_sync/live_sync_test.cc @@ -281,8 +281,8 @@ void LiveSyncTest::SetUpTestServerIfRequired() { 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."; } } @@ -295,7 +295,7 @@ bool LiveSyncTest::SetUpLocalPythonTestServer() { 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. @@ -321,8 +321,8 @@ bool LiveSyncTest::SetUpLocalTestServer() { 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 " |