| 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;
|
| }
|
|
|
|
|