summaryrefslogtreecommitdiffstats
path: root/chrome/test/webdriver/commands
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-20 20:22:07 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-20 20:22:07 +0000
commitca8cf5f8032626708e47604d190dbda0ffd8d618 (patch)
tree4a73ad587be839680e0e0b879ef664558bf3a87a /chrome/test/webdriver/commands
parent593df619ff5c865bea2ffdd8927e5462c91318a2 (diff)
downloadchromium_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/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(