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

Unified Diff: chrome/test/webdriver/server.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/webdriver/keymap.cc ('k') | chrome/test/webdriver/session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/server.cc
===================================================================
--- chrome/test/webdriver/server.cc (revision 63075)
+++ chrome/test/webdriver/server.cc (working copy)
@@ -100,7 +100,7 @@
port = cmd_line.GetSwitchValueASCII(std::string("port"));
}
- LOG(INFO) << "Using port: " << port;
+ VLOG(1) << "Using port: " << port;
webdriver::SessionManager* session =
Singleton<webdriver::SessionManager>::get();
session->SetIPAddress(port);
@@ -115,9 +115,8 @@
std::cout << "Starting server" << std::endl;
// The default behavior is to run this service forever.
- while (true) {
+ while (true)
PlatformThread::Sleep(3600);
- }
// We should not reach here since the service should never quit.
// TODO(jmikhail): register a listener for SIGTERM and break the
« no previous file with comments | « chrome/test/webdriver/keymap.cc ('k') | chrome/test/webdriver/session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698