From aedee9d6f6e9bb2131ff2dccb815ea98934a1a9e Mon Sep 17 00:00:00 2001 From: Robin Lee Date: Fri, 26 May 2023 12:22:53 +0000 Subject: [PATCH] Downgrade a WTF to a W Changes in the flow to this function make this a more common case that isn't so concerning any more. Change-Id: Ic582491e7ff03f1ee5196ccf9d75a8ec43af7cd8 Fix: 284235774 --- .../android/wm/shell/keyguard/KeyguardTransitionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/keyguard/KeyguardTransitionHandler.java b/libs/WindowManager/Shell/src/com/android/wm/shell/keyguard/KeyguardTransitionHandler.java index 658359ed31d06..79c646a84f9d6 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/keyguard/KeyguardTransitionHandler.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/keyguard/KeyguardTransitionHandler.java @@ -166,7 +166,7 @@ public class KeyguardTransitionHandler implements Transitions.TransitionHandler "unocclude", transition, info, startTransaction, finishTransaction, finishCallback); } else { - Log.wtf(TAG, "Failed to play: " + info); + Log.w(TAG, "Failed to play: " + info); return false; } }