summaryrefslogtreecommitdiffstats
path: root/chrome/test/webdriver/automation.cc
diff options
context:
space:
mode:
authorkkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-09 21:20:19 +0000
committerkkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-09 21:20:19 +0000
commit4ab22cfc619ee8ff17a8c50e289ec3b30731ceba (patch)
tree07bb0213c714d1bc07a912d8aa4dda87efb93aab /chrome/test/webdriver/automation.cc
parent60ad02314127b22b868baa25fe546b8e15e9029d (diff)
downloadchromium_src-4ab22cfc619ee8ff17a8c50e289ec3b30731ceba.zip
chromium_src-4ab22cfc619ee8ff17a8c50e289ec3b30731ceba.tar.gz
chromium_src-4ab22cfc619ee8ff17a8c50e289ec3b30731ceba.tar.bz2
In chromedriver, add /log url to get the contents of the chromedriver log
remotely. Also add a 'chrome.verbose' boolean startup option. Remove usage of VLOG(1) in chromedriver. We do not need as complicated logging as in Chrome. BUG=85241 TEST=none Review URL: http://codereview.chromium.org/7104085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88591 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/webdriver/automation.cc')
-rw-r--r--chrome/test/webdriver/automation.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/test/webdriver/automation.cc b/chrome/test/webdriver/automation.cc
index de44bebf..66c7af6 100644
--- a/chrome/test/webdriver/automation.cc
+++ b/chrome/test/webdriver/automation.cc
@@ -170,7 +170,7 @@ void Automation::InitWithBrowserPath(const FilePath& browser_exe,
std::string chrome_details = base::StringPrintf(
"Using Chrome binary at: %" PRFilePath,
browser_exe.value().c_str());
- VLOG(1) << chrome_details;
+ LOG(INFO) << chrome_details;
if (!launcher_->LaunchBrowserAndServer(launch_props, true)) {
*error = new Error(
@@ -181,8 +181,8 @@ void Automation::InitWithBrowserPath(const FilePath& browser_exe,
}
launcher_->automation()->set_action_timeout_ms(base::kNoTimeout);
- VLOG(1) << "Chrome launched successfully. Version: "
- << automation()->server_version();
+ LOG(INFO) << "Chrome launched successfully. Version: "
+ << automation()->server_version();
bool has_automation_version = false;
*error = CompareVersion(730, 0, &has_automation_version);