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