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/webdriver/commands/webdriver_command.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/webdriver/commands/webdriver_command.cc')
-rw-r--r-- | chrome/test/webdriver/commands/webdriver_command.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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( |