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

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

Issue 687803005: [content/browser/media] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « chrome/browser/media/media_browsertest.cc ('k') | chrome/browser/media/wv_test_license_server_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/test_license_server.cc
diff --git a/chrome/browser/media/test_license_server.cc b/chrome/browser/media/test_license_server.cc
index 300274ebabb84c35592e3d9476bd74e7086a0a73..92f751f54568261705602a4cb04b38b7aca0d4ea 100644
--- a/chrome/browser/media/test_license_server.cc
+++ b/chrome/browser/media/test_license_server.cc
@@ -26,21 +26,21 @@ bool TestLicenseServer::Start() {
return true;
if (!server_config_->IsPlatformSupported()) {
- VLOG(0) << "License server is not supported on current platform.";
+ DVLOG(0) << "License server is not supported on current platform.";
return false;
}
CommandLine command_line(CommandLine::NO_PROGRAM);
if (!server_config_->GetServerCommandLine(&command_line)) {
- VLOG(0) << "Could not get server command line to launch.";
+ DVLOG(0) << "Could not get server command line to launch.";
return false;
}
- VLOG(0) << "Starting test license server " <<
+ DVLOG(0) << "Starting test license server " <<
command_line.GetCommandLineString();
if (!base::LaunchProcess(command_line, base::LaunchOptions(),
&license_server_process_)) {
- VLOG(0) << "Failed to start test license server!";
+ DVLOG(0) << "Failed to start test license server!";
return false;
}
DCHECK_NE(license_server_process_, base::kNullProcessHandle);
@@ -50,14 +50,14 @@ bool TestLicenseServer::Start() {
bool TestLicenseServer::Stop() {
if (license_server_process_ == base::kNullProcessHandle)
return true;
- VLOG(0) << "Killing license server.";
+ DVLOG(0) << "Killing license server.";
bool kill_succeeded = base::KillProcess(license_server_process_, 1, true);
if (kill_succeeded) {
base::CloseProcessHandle(license_server_process_);
license_server_process_ = base::kNullProcessHandle;
} else {
- VLOG(1) << "Kill failed?!";
+ DVLOG(1) << "Kill failed?!";
}
return kill_succeeded;
}
« no previous file with comments | « chrome/browser/media/media_browsertest.cc ('k') | chrome/browser/media/wv_test_license_server_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698