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

Unified Diff: chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc

Issue 83413006: Replace LOG(INFO) with VLOG(0), throughout *media* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase2 Created 7 years, 1 month 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
Index: chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc
diff --git a/chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc b/chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc
index 162e9545a2addc3ca7f37973937c73c61a156bae..c55e610f8919609974d09cabd6159e59db291e3d 100644
--- a/chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc
+++ b/chrome/browser/media/chrome_webrtc_video_quality_browsertest.cc
@@ -159,7 +159,7 @@ class WebrtcVideoQualityBrowserTest : public WebRtcTestBase {
pywebsocket_command.AppendArg("-d");
pywebsocket_command.AppendArgPath(path_to_data_handler);
- LOG(INFO) << "Running " << pywebsocket_command.GetCommandLineString();
+ VLOG(0) << "Running " << pywebsocket_command.GetCommandLineString();
return base::LaunchProcess(pywebsocket_command, base::LaunchOptions(),
&pywebsocket_server_);
}
@@ -229,10 +229,10 @@ class WebrtcVideoQualityBrowserTest : public WebRtcTestBase {
// We produce an output file that will later be used as an input to the
// barcode decoder and frame analyzer tools.
- LOG(INFO) << "Running " << converter_command.GetCommandLineString();
+ VLOG(0) << "Running " << converter_command.GetCommandLineString();
std::string result;
bool ok = base::GetAppOutput(converter_command, &result);
- LOG(INFO) << "Output was:\n\n" << result;
+ VLOG(0) << "Output was:\n\n" << result;
return ok;
}
@@ -287,7 +287,7 @@ class WebrtcVideoQualityBrowserTest : public WebRtcTestBase {
compare_command.AppendArg("--stats_file");
compare_command.AppendArgPath(stats_file);
- LOG(INFO) << "Running " << compare_command.GetCommandLineString();
+ VLOG(0) << "Running " << compare_command.GetCommandLineString();
std::string output;
bool ok = base::GetAppOutput(compare_command, &output);
// Print to stdout to ensure the perf numbers are parsed properly by the
« no previous file with comments | « chrome/browser/media/chrome_webrtc_audio_quality_browsertest.cc ('k') | chrome/browser/media/encrypted_media_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698