summaryrefslogtreecommitdiffstats
path: root/chrome/test/webdriver/commands
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/webdriver/commands')
-rw-r--r--chrome/test/webdriver/commands/create_session.cc2
-rw-r--r--chrome/test/webdriver/commands/webdriver_command.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/webdriver/commands/create_session.cc b/chrome/test/webdriver/commands/create_session.cc
index 42dd722..6903efb 100644
--- a/chrome/test/webdriver/commands/create_session.cc
+++ b/chrome/test/webdriver/commands/create_session.cc
@@ -24,7 +24,7 @@ void CreateSession::ExecutePost(Response* const response) {
return;
}
- LOG(INFO) << "Created session " << session_id;
+ VLOG(1) << "Created session " << session_id;
std::ostringstream stream;
stream << "http://" << session_manager->GetIPAddress() << "/session/"
<< session_id;
diff --git a/chrome/test/webdriver/commands/webdriver_command.cc b/chrome/test/webdriver/commands/webdriver_command.cc
index 68a42f5..d7e9ab0 100644
--- a/chrome/test/webdriver/commands/webdriver_command.cc
+++ b/chrome/test/webdriver/commands/webdriver_command.cc
@@ -50,7 +50,7 @@ bool WebDriverCommand::Init(Response* const response) {
return false;
}
- LOG(INFO) << "Fetching session: " << session_id;
+ VLOG(1) << "Fetching session: " << session_id;
session_ = Singleton<SessionManager>::get()->GetSession(session_id);
if (session_ == NULL) {
response->set_value(Value::CreateStringValue(