Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 46c4e58b authored by Arthur Hung's avatar Arthur Hung
Browse files

Change the error log when populateViewport

Currently, we are logging an error when a display does not
support input device matching.
(ex: a virtual display without TOUCH_VIRTUAL)
But that's not a really an error.

Convert it to a normal log instead.

Bug: 122364588
Bug: 123514081
Test: Create a virtual display without touch. Check logcat.
Change-Id: I3d44f20862ab0069f2a8649427914888d4f24d30
parent 6a41c383
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1336,7 +1336,7 @@ public final class DisplayManagerService extends SystemService {
                && !TextUtils.isEmpty(info.uniqueId)) {
            viewportType = VIEWPORT_VIRTUAL;
        } else {
            Slog.wtf(TAG, "Unable to populate viewport for display device: " + info);
            Slog.i(TAG, "Display " + info + " does not support input device matching.");
            return;
        }