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

Unified Diff: ui/ozone/platform/drm/gpu/drm_gpu_display_manager.cc

Issue 991963002: [Ozone-Drm] More LOG cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « no previous file | ui/ozone/platform/drm/gpu/drm_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/drm_gpu_display_manager.cc
diff --git a/ui/ozone/platform/drm/gpu/drm_gpu_display_manager.cc b/ui/ozone/platform/drm/gpu/drm_gpu_display_manager.cc
index d11c80f6eca03e9ab2362fe61815d1c0ad1fc941..60b335bfaa429bcc04c425c8af45ec900b8b6dce 100644
--- a/ui/ozone/platform/drm/gpu/drm_gpu_display_manager.cc
+++ b/ui/ozone/platform/drm/gpu/drm_gpu_display_manager.cc
@@ -336,14 +336,14 @@ bool DrmGpuDisplayManager::GetHDCPState(const DrmDisplaySnapshot& output,
ScopedDrmConnectorPtr connector(
output.drm()->GetConnector(output.connector()));
if (!connector) {
- LOG(ERROR) << "Failed to get connector " << output.connector();
+ PLOG(ERROR) << "Failed to get connector " << output.connector();
return false;
}
ScopedDrmPropertyPtr hdcp_property(
output.drm()->GetProperty(connector.get(), kContentProtection));
if (!hdcp_property) {
- LOG(ERROR) << "'" << kContentProtection << "' property doesn't exist.";
+ PLOG(ERROR) << "'" << kContentProtection << "' property doesn't exist.";
return false;
}
@@ -369,14 +369,14 @@ bool DrmGpuDisplayManager::SetHDCPState(const DrmDisplaySnapshot& output,
ScopedDrmConnectorPtr connector(
output.drm()->GetConnector(output.connector()));
if (!connector) {
- LOG(ERROR) << "Failed to get connector " << output.connector();
+ PLOG(ERROR) << "Failed to get connector " << output.connector();
return false;
}
ScopedDrmPropertyPtr hdcp_property(
output.drm()->GetProperty(connector.get(), kContentProtection));
if (!hdcp_property) {
- LOG(ERROR) << "'" << kContentProtection << "' property doesn't exist.";
+ PLOG(ERROR) << "'" << kContentProtection << "' property doesn't exist.";
return false;
}
« no previous file with comments | « no previous file | ui/ozone/platform/drm/gpu/drm_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698