Merge "Remove the occasionally crashy MotionEvent logging." into tm-dev

This commit is contained in:
Shan Huang
2022-04-26 15:20:53 +00:00
committed by Android (Google) Code Review

View File

@@ -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();
}
}