diff options
| author | 2020-04-07 15:12:48 -0700 | |
|---|---|---|
| committer | 2020-04-17 16:00:00 +0000 | |
| commit | e96377eec8ba033bb02eea35973bd57ee6ec5e97 (patch) | |
| tree | 2f263ee897ea00e86760c5d87c8f4fb4e5db77d3 | |
| parent | 4cbb22353a857c31bd3413da6ca8d3de0e2fe59f (diff) | |
Add some bubble info to NotificationRecord dump method
- can it bubble
- is it a bubble
Bug: 154161673
Test: treehugger
Change-Id: I302b71a252a4de8a196ce959482cb96073682135
| -rw-r--r-- | services/core/java/com/android/server/notification/NotificationRecord.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationRecord.java b/services/core/java/com/android/server/notification/NotificationRecord.java index 192df4139b37..1e05aeb53629 100644 --- a/services/core/java/com/android/server/notification/NotificationRecord.java +++ b/services/core/java/com/android/server/notification/NotificationRecord.java @@ -55,7 +55,6 @@ import android.service.notification.SnoozeCriterion; import android.service.notification.StatusBarNotification; import android.text.TextUtils; import android.util.ArraySet; -import android.util.FeatureFlagUtils; import android.util.Log; import android.util.TimeUtils; import android.util.proto.ProtoOutputStream; @@ -581,6 +580,8 @@ public final class NotificationRecord { pw.println(prefix + "mLight= " + mLight); pw.println(prefix + "mShowBadge=" + mShowBadge); pw.println(prefix + "mColorized=" + notification.isColorized()); + pw.println(prefix + "mAllowBubble=" + mAllowBubble); + pw.println(prefix + "isBubble=" + notification.isBubbleNotification()); pw.println(prefix + "mIsInterruptive=" + mIsInterruptive); pw.println(prefix + "effectiveNotificationChannel=" + getChannel()); if (getPeopleOverride() != null) { |