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

Commit ab2fc497 authored by Shan Huang's avatar Shan Huang
Browse files

Remove the occasionally crashy MotionEvent logging.

Bug: 230097019
Test: mp sysuig. Swipe back in various places and make sure nothing crashes.
Change-Id: I54dfaff912e12205fb5b6ca9b8a8fa4682e2e05b
parent 6585242e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -211,7 +211,8 @@ public class BackAnimationController implements RemoteCallable<BackAnimationCont
        } else if (action == MotionEvent.ACTION_MOVE) {
            onMove(event, swipeEdge);
        } else if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL) {
            ProtoLog.d(WM_SHELL_BACK_PREVIEW, "Finishing gesture with event: %s", event);
            ProtoLog.d(WM_SHELL_BACK_PREVIEW,
                    "Finishing gesture with event action: %d", action);
            onGestureFinished();
        }
    }