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

Commit 8be72660 authored by PODISHETTY KUMAR's avatar PODISHETTY KUMAR Committed by Android (Google) Code Review
Browse files

Merge "Revert "Print display id as integer"" into main

parents 0dd479e7 14b8647f
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -338,8 +338,9 @@ bool InputState::shouldCancelPreviousStream(const MotionEntry& motionEntry) cons
        // it's unlikely that those two streams would be consistent with each other. Therefore,
        // cancel the previous gesture if the display id changes.
        if (motionEntry.displayId != lastMemento.displayId) {
            LOG(INFO) << "Canceling stream: last displayId was " << lastMemento.displayId
                      << " and new event is " << motionEntry;
            LOG(INFO) << "Canceling stream: last displayId was "
                      << inputEventSourceToString(lastMemento.displayId) << " and new event is "
                      << motionEntry;
            return true;
        }