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

Commit 07032008 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Delete noisy "try handler %s" log from ShellTransit" into main

parents 1e5d9afb cd1202d3
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -1076,9 +1076,11 @@ public class Transitions implements RemoteCallable<Transitions>,
            @Nullable TransitionHandler skip
    ) {
        for (int i = mHandlers.size() - 1; i >= 0; --i) {
            if (mHandlers.get(i) == skip) continue;
            ProtoLog.v(ShellProtoLogGroup.WM_SHELL_TRANSITIONS, " try handler %s",
            if (mHandlers.get(i) == skip) {
                ProtoLog.v(ShellProtoLogGroup.WM_SHELL_TRANSITIONS, " skip handler %s",
                        mHandlers.get(i));
                continue;
            }
            boolean consumed = mHandlers.get(i).startAnimation(transition, info, startT, finishT,
                    finishCB);
            if (consumed) {