diff options
| author | 2022-11-08 13:26:25 +0000 | |
|---|---|---|
| committer | 2022-11-08 13:26:33 +0000 | |
| commit | 366fb289b431b0df9b2cb7a0f8a5733ecd4d19e4 (patch) | |
| tree | 5cf49fb82a6a005547d2ff904cbadd46be5dd8b2 | |
| parent | 4d07687915b39dd4c241f5d22e1f0bd02e41bff8 (diff) | |
[SystemUI] Fix the misleading log.
Change-Id: I5b863a5b57e153090b3474b98c941f9360b57785
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index 0783eeec176f..90bcb0fe85fa 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -1641,7 +1641,7 @@ public class KeyguardViewMediator extends CoreStartable implements Dumpable, try { callback.onKeyguardExitResult(true); } catch (RemoteException e) { - Slog.w(TAG, "Failed to call onKeyguardExitResult(false)", e); + Slog.w(TAG, "Failed to call onKeyguardExitResult(true)", e); } } else { |