diff options
| author | 2025-02-14 18:43:16 -0800 | |
|---|---|---|
| committer | 2025-02-14 18:43:16 -0800 | |
| commit | 7a77ed95d4e9a0fe40d9cf45e5ce2c9ebd2379e8 (patch) | |
| tree | d7bf10884455d57fab46273cf14df244dab81146 | |
| parent | 95cb7d2ba44c150e4a277603434328b054f3316e (diff) | |
| parent | bf8c02bceeef2895a353df39b666e7d4061e60a2 (diff) | |
Merge "Switch status bar long press from log buffer to log cat" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java b/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java index 5746cef41d6b..131efaac3d6a 100644 --- a/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java +++ b/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java @@ -2201,7 +2201,7 @@ public final class NotificationPanelViewController implements ShadeSurface, Dump @Override @Deprecated public void onStatusBarLongPress(MotionEvent event) { - mShadeLog.d("Status Bar was long pressed."); + Log.i(TAG, "Status Bar was long pressed."); ShadeExpandsOnStatusBarLongPress.assertInNewMode(); mStatusBarLongPressDowntime = event.getDownTime(); if (isTracking()) { |