| Index: ui/ozone/platform/dri/native_display_delegate_proxy.cc
|
| diff --git a/ui/ozone/platform/dri/native_display_delegate_proxy.cc b/ui/ozone/platform/dri/native_display_delegate_proxy.cc
|
| index c92a432f6e82eb54013c1e7e088bf2213359da60..f9d0fa38cca8a40996d8a0761b19cd41f5a4aa5c 100644
|
| --- a/ui/ozone/platform/dri/native_display_delegate_proxy.cc
|
| +++ b/ui/ozone/platform/dri/native_display_delegate_proxy.cc
|
| @@ -106,9 +106,12 @@ void NativeDisplayDelegateProxy::Initialize() {
|
|
|
| // Fallback to command line if the file doesn't exit or failed to read.
|
| if (success || CreateSnapshotFromCommandLine(¶ms)) {
|
| + LOG_IF(ERROR, !success) << "Failed to read display_info.bin.";
|
| DCHECK_NE(DISPLAY_CONNECTION_TYPE_NONE, params.type);
|
| displays_.push_back(new DriDisplaySnapshotProxy(params, display_manager_));
|
| has_dummy_display_ = true;
|
| + } else {
|
| + LOG(ERROR) << "Failed to obtain initial display info";
|
| }
|
| }
|
|
|
|
|