From dc125c80225d54aec83ec7e4c2f5512170116d8c Mon Sep 17 00:00:00 2001 From: Lyn Han Date: Mon, 29 Aug 2022 13:39:23 -0700 Subject: [PATCH] Add dumpsys logs to debug missing notifs See if ExpandableNotificationRow #performDismiss is calling registerFutureDismissal Bug: 237897866 Test: dumpsys Change-Id: I1764d977ced55035d066e65224d05d165538863d --- .../statusbar/notification/row/ExpandableNotificationRow.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java index 855390d75ff82..f2475a85a918a 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java @@ -3453,6 +3453,8 @@ public class ExpandableNotificationRow extends ActivatableNotificationView pw.print("visibility: " + getVisibility()); pw.print(", alpha: " + getAlpha()); pw.print(", translation: " + getTranslation()); + pw.print(", Entry isDismissable: " + mEntry.isDismissable()); + pw.print(", mOnUserInteractionCallback null: " + (mOnUserInteractionCallback == null)); pw.print(", removed: " + isRemoved()); pw.print(", expandAnimationRunning: " + mExpandAnimationRunning); NotificationContentView showingLayout = getShowingLayout();