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

Unified Diff: chrome/test/ui/ui_test.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/ui/ui_layout_test.cc ('k') | chrome/test/ui_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ui/ui_test.cc
===================================================================
--- chrome/test/ui/ui_test.cc (revision 63075)
+++ chrome/test/ui/ui_test.cc (working copy)
@@ -174,8 +174,7 @@
// TODO(phajdan.jr): get rid of set_command_execution_timeout_ms.
void UITestBase::set_command_execution_timeout_ms(int timeout) {
server_->set_command_execution_timeout_ms(timeout);
- LOG(INFO) << "Automation command execution timeout set to "
- << timeout << " milli secs.";
+ VLOG(1) << "Automation command execution timeout set to " << timeout << " ms";
}
AutomationProxy* UITestBase::CreateAutomationProxy(int execution_timeout) {
@@ -772,8 +771,8 @@
const char* browser_wrapper = getenv("BROWSER_WRAPPER");
if (browser_wrapper) {
command_line.PrependWrapper(browser_wrapper);
- LOG(INFO) << "BROWSER_WRAPPER was set, prefixing command_line with "
- << browser_wrapper;
+ VLOG(1) << "BROWSER_WRAPPER was set, prefixing command_line with "
+ << browser_wrapper;
}
bool started = base::LaunchApp(command_line.argv(),
« no previous file with comments | « chrome/test/ui/ui_layout_test.cc ('k') | chrome/test/ui_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698