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

Unified Diff: chrome/browser/media/wv_test_license_server_config.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/test_license_server.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/wv_test_license_server_config.cc
diff --git a/chrome/browser/media/wv_test_license_server_config.cc b/chrome/browser/media/wv_test_license_server_config.cc
index 7cbe0c3fe99c8926912d71ec6bcb325068ab3560..c789c4742c706ef02533336237f537b60701fbd9 100644
--- a/chrome/browser/media/wv_test_license_server_config.cc
+++ b/chrome/browser/media/wv_test_license_server_config.cc
@@ -46,7 +46,7 @@ bool WVTestLicenseServerConfig::GetServerCommandLine(
// Add the Python protocol buffers files directory to Python path.
base::FilePath pyproto_dir;
if (!GetPyProtoPath(&pyproto_dir)) {
- VLOG(0) << "Cannot find pyproto directory required by license server.";
+ DVLOG(0) << "Cannot find pyproto directory required by license server.";
return false;
}
AppendToPythonPath(pyproto_dir);
@@ -54,7 +54,8 @@ bool WVTestLicenseServerConfig::GetServerCommandLine(
base::FilePath license_server_path;
GetLicenseServerPath(&license_server_path);
if (!base::PathExists(license_server_path)) {
- VLOG(0) << "Missing license server file at " << license_server_path.value();
+ DVLOG(0) << "Missing license server file at "
+ << license_server_path.value();
return false;
}
@@ -65,7 +66,7 @@ bool WVTestLicenseServerConfig::GetServerCommandLine(
if (!base::PathExists(config_path.Append(kKeysFileName)) ||
!base::PathExists(config_path.Append(kPoliciesFileName)) ||
!base::PathExists(config_path.Append(kProfilesFileName))) {
- VLOG(0) << "Missing license server configuration files.";
+ DVLOG(0) << "Missing license server configuration files.";
return false;
}
@@ -114,7 +115,7 @@ bool WVTestLicenseServerConfig::SelectServerPort() {
return true;
}
}
- VLOG(0) << "Could not find an open port in the range of " << kMinPort <<
+ DVLOG(0) << "Could not find an open port in the range of " << kMinPort <<
" to " << kMinPort + kPortRangeSize;
return false;
}
« no previous file with comments | « chrome/browser/media/test_license_server.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698