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

Unified Diff: chrome_frame/test/chrome_frame_test_utils.cc

Issue 3850002: Convert LOG(INFO) to VLOG(1) - chrome_frame/. (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_frame/task_marshaller.cc ('k') | chrome_frame/test/chrome_frame_ui_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/chrome_frame_test_utils.cc
===================================================================
--- chrome_frame/test/chrome_frame_test_utils.cc (revision 62784)
+++ chrome_frame/test/chrome_frame_test_utils.cc (working copy)
@@ -553,8 +553,8 @@
base::ProcessHandle StartCrashService() {
if (DetectRunningCrashService(kCrashServiceStartupTimeoutMs)) {
- DLOG(INFO) << "crash_service.exe is already running. We will use the "
- << "existing process and leave it running after tests complete.";
+ DVLOG(1) << "crash_service.exe is already running. We will use the "
+ "existing process and leave it running after tests complete.";
return NULL;
}
@@ -566,7 +566,7 @@
base::ProcessHandle crash_service = NULL;
- DLOG(INFO) << "Starting crash_service.exe so you know if a test crashes!";
+ DVLOG(1) << "Starting crash_service.exe so you know if a test crashes!";
FilePath crash_service_path = exe_dir.AppendASCII("crash_service.exe");
if (!base::LaunchApp(crash_service_path.value(), false, false,
@@ -578,13 +578,13 @@
base::Time start = base::Time::Now();
if (DetectRunningCrashService(kCrashServiceStartupTimeoutMs)) {
- DLOG(INFO) << "crash_service.exe is ready for clients in "
- << (base::Time::Now() - start).InMilliseconds() << "ms.";
+ DVLOG(1) << "crash_service.exe is ready for clients in "
+ << (base::Time::Now() - start).InMilliseconds() << " ms.";
return crash_service;
} else {
DLOG(ERROR) << "crash_service.exe failed to accept client connections "
- << "within " << kCrashServiceStartupTimeoutMs << "ms. "
- << "Terminating it now.";
+ "within " << kCrashServiceStartupTimeoutMs << " ms. "
+ "Terminating it now.";
// First check to see if it's even still running just to minimize the
// likelihood of spurious error messages from KillProcess.
« no previous file with comments | « chrome_frame/task_marshaller.cc ('k') | chrome_frame/test/chrome_frame_ui_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698