diff options
author | 2025-01-14 15:35:03 -0500 | |
---|---|---|
committer | 2025-01-14 15:35:03 -0500 | |
commit | 5cddda80d61780e540e1dedc10006c8e9eb3b501 (patch) | |
tree | 04122aa6ea065f3342cb7f6d5b388e0413b9f7ed | |
parent | ce9ea2caef32bde9cc39e2b0fbe7e2cac9db2358 (diff) |
Fix incorrect ActiveGestureLog string
Flag: com.android.launcher3.enable_state_manager_proto_log
Fixes: 389977881
Test: checked logs
Change-Id: I7dd51d14a9a4d3bb75c83ea8aa5dce4b62ed9040
-rw-r--r-- | quickstep/src_protolog/com/android/quickstep/util/ActiveGestureProtoLogProxy.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quickstep/src_protolog/com/android/quickstep/util/ActiveGestureProtoLogProxy.java b/quickstep/src_protolog/com/android/quickstep/util/ActiveGestureProtoLogProxy.java index be1a4e8c3c..37c64cfafe 100644 --- a/quickstep/src_protolog/com/android/quickstep/util/ActiveGestureProtoLogProxy.java +++ b/quickstep/src_protolog/com/android/quickstep/util/ActiveGestureProtoLogProxy.java @@ -395,11 +395,11 @@ public class ActiveGestureProtoLogProxy { public static void logOnRecentsAnimationStart(int appCount) { ActiveGestureLog.INSTANCE.addLog(new ActiveGestureLog.CompoundString( - "RecentsAnimationCallbacks.onAnimationStart (canceled): %d", appCount), + "RecentsAnimationCallbacks.onAnimationStart: %d", appCount), /* gestureEvent= */ ON_START_RECENTS_ANIMATION); if (!enableActiveGestureProtoLog() || !isProtoLogInitialized()) return; ProtoLog.d(ACTIVE_GESTURE_LOG, - "RecentsAnimationCallbacks.onAnimationStart (canceled): %d", appCount); + "RecentsAnimationCallbacks.onAnimationStart: %d", appCount); } public static void logStartRecentsAnimationCallback(@NonNull String callback) { |