diff options
| author | 2023-09-13 16:22:30 +0000 | |
|---|---|---|
| committer | 2023-09-13 16:22:30 +0000 | |
| commit | bb443d39badf727b1b0dde584c17ad7c1712d9bc (patch) | |
| tree | e84812dcf8aa93657fd23b4871c4b571cd0f7dce | |
| parent | 8a1d44cfe7f28a0987bd64342eb9cb57f15dfe02 (diff) | |
| parent | 6585b8a8b2ebac2892d0d079ba6f37b0f86f850e (diff) | |
Make NSWVC throw on userdebug builds when launch animation times out am: 6585b8a8b2
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/24719177
Change-Id: Ibe6bec151f84bdccd8bb06119950b855b33bfabe
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java b/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java index 798f2d586bab..06557f2f2c79 100644 --- a/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java +++ b/packages/SystemUI/src/com/android/systemui/shade/NotificationShadeWindowViewController.java @@ -288,7 +288,7 @@ public class NotificationShadeWindowViewController { } if (mExpandAnimationRunning) { if (isDown && mClock.uptimeMillis() > mLaunchAnimationTimeout) { - mShadeLogger.d("NSWVC: launch animation timed out"); + Log.wtf(TAG, "NSWVC: launch animation timed out"); setExpandAnimationRunning(false); } else { return logDownDispatch(ev, "expand animation running", false); |