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

Unified Diff: chrome/test/webdriver/session_manager.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/session.cc ('k') | chrome/test/webdriver/utility_functions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/session_manager.cc
===================================================================
--- chrome/test/webdriver/session_manager.cc (revision 63075)
+++ chrome/test/webdriver/session_manager.cc (working copy)
@@ -141,8 +141,8 @@
// Start chrome, if it doesn't startup quit.
const int ap_timeout = TestTimeouts::command_execution_timeout_ms();
- LOG(INFO) << "Waiting for a max of " << ap_timeout << " ms to "
- << "start the chrome browser";
+ VLOG(1) << "Waiting for a max of " << ap_timeout << " ms to start the chrome "
+ "browser";
scoped_ptr<Session> session(new Session(*id));
@@ -162,10 +162,10 @@
bool SessionManager::Delete(const std::string& id) {
std::map<std::string, Session*>::iterator it;
- LOG(INFO) << "Deleting session with ID " << id;
+ VLOG(1) << "Deleting session with ID " << id;
it = map_.find(id);
if (it == map_.end()) {
- LOG(INFO) << "No such session with ID " << id;
+ VLOG(1) << "No such session with ID " << id;
return false;
}
@@ -178,7 +178,7 @@
std::map<std::string, Session*>::const_iterator it;
it = map_.find(id);
if (it == map_.end()) {
- LOG(INFO) << "No such session with ID " << id;
+ VLOG(1) << "No such session with ID " << id;
return NULL;
}
return it->second;
« no previous file with comments | « chrome/test/webdriver/session.cc ('k') | chrome/test/webdriver/utility_functions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698