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

Unified Diff: base/event_trace_controller_win_unittest.cc

Issue 3845002: Convert LOG(INFO) to VLOG(1) - base/. (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 | « base/event_trace_consumer_win_unittest.cc ('k') | base/file_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/event_trace_controller_win_unittest.cc
===================================================================
--- base/event_trace_controller_win_unittest.cc (revision 62784)
+++ base/event_trace_controller_win_unittest.cc (working copy)
@@ -119,7 +119,7 @@
HRESULT hr = controller.StartRealtimeSession(kTestSessionName, 100 * 1024);
if (hr == E_ACCESSDENIED) {
- LOG(INFO) << "You must be an administrator to run this test on Vista";
+ VLOG(1) << "You must be an administrator to run this test on Vista";
return;
}
@@ -140,7 +140,7 @@
HRESULT hr = controller.StartFileSession(kTestSessionName,
temp.value().c_str());
if (hr == E_ACCESSDENIED) {
- LOG(INFO) << "You must be an administrator to run this test on Vista";
+ VLOG(1) << "You must be an administrator to run this test on Vista";
return;
}
@@ -162,7 +162,7 @@
EtwTraceController controller;
HRESULT hr = controller.StartRealtimeSession(kTestSessionName, 100 * 1024);
if (hr == E_ACCESSDENIED) {
- LOG(INFO) << "You must be an administrator to run this test on Vista";
+ VLOG(1) << "You must be an administrator to run this test on Vista";
return;
}
« no previous file with comments | « base/event_trace_consumer_win_unittest.cc ('k') | base/file_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698