diff options
| -rw-r--r-- | services/core/java/com/android/server/notification/NotificationRecord.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationRecord.java b/services/core/java/com/android/server/notification/NotificationRecord.java index 75b9f1311b75..1ab05ec94476 100644 --- a/services/core/java/com/android/server/notification/NotificationRecord.java +++ b/services/core/java/com/android/server/notification/NotificationRecord.java @@ -443,6 +443,8 @@ public final class NotificationRecord { pw.println(prefix + "fullscreenIntent=" + notification.fullScreenIntent); pw.println(prefix + "contentIntent=" + notification.contentIntent); pw.println(prefix + "deleteIntent=" + notification.deleteIntent); + pw.println(prefix + "number=" + notification.number); + pw.println(prefix + "groupAlertBehavior=" + notification.getGroupAlertBehavior()); pw.print(prefix + "tickerText="); if (!TextUtils.isEmpty(notification.tickerText)) { |