diff options
author | Ramakant Singh <ramakant@codeaurora.org> | 2020-09-18 09:42:03 +0530 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-09-22 00:15:02 -0700 |
commit | fdda88482dfae7aaa98a8f93bc8dc64ffc7c1f2e (patch) | |
tree | b606cc6acda1b256be6d478632e1b29ac94711a3 | |
parent | d2890f16ab9ac412220ccb0559d4829e867f4327 (diff) |
sdm: make non-fatal errors as warnings.
There is no functional failure but test scripts are
expecting no SDM errors.
Change-Id: Ice1467e1f2a0b03c5dc621d258785c4f78236b04
-rw-r--r-- | sdm/libs/core/drm/hw_info_drm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdm/libs/core/drm/hw_info_drm.cpp b/sdm/libs/core/drm/hw_info_drm.cpp index 3cbb6de0..6cbfba4a 100644 --- a/sdm/libs/core/drm/hw_info_drm.cpp +++ b/sdm/libs/core/drm/hw_info_drm.cpp @@ -827,7 +827,7 @@ DisplayError HWInfoDRM::GetDisplaysStatus(HWDisplaysInfo *hw_displays_info) { hw_info.display_type = kVirtual; break; default: - DLOGE("Unknown display type = %d on connector id %u.", iter.second.type, + DLOGW("Unknown display type = %d on connector id %u.", iter.second.type, hw_info.display_id); break; } |