summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Justin Weir <justinweir@google.com> 2025-02-14 16:18:30 -0500
committer Justin Weir <justinweir@google.com> 2025-02-14 16:18:30 -0500
commitbf8c02bceeef2895a353df39b666e7d4061e60a2 (patch)
tree9add47b3bd28c2d89b14eb1c15e347db0c5b602f
parentbd6247d9c17cbef4594acea26275132cf457fd62 (diff)
Switch status bar long press from log buffer to log cat
There are no performance concerns with this log message, and it is more useful to have the message in log cat than in a log buffer. Bug: 394977231 Test: Presubmits are sufficient Flag: EXEMPT logging only change Change-Id: I09f83ee08a1fb6fe1ad7f23aa2bdf9092819f913
-rw-r--r--packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java2
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()) {