From e5ab521017961762c72509701b1db69c4bbcd793 Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Mon, 2 Nov 2020 09:40:26 -0500 Subject: [PATCH] Add missing value to bugreport Test: bugreport Bug: 171914300 Change-Id: I39dd3a1b757e5502e04e1ea245ca4b413d6b3cca --- .../android/server/notification/NotificationManagerService.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 4f4f3c64b1b4d..296badac81ee4 100755 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -5498,6 +5498,8 @@ public class NotificationManagerService extends SystemService { pw.println(" mCallState=" + callStateToString(mCallState)); pw.println(" mSystemReady=" + mSystemReady); pw.println(" mMaxPackageEnqueueRate=" + mMaxPackageEnqueueRate); + pw.println(" hideSilentStatusBar=" + + mPreferencesHelper.shouldHideSilentStatusIcons()); } pw.println(" mArchive=" + mArchive.toString()); Iterator> iter = mArchive.descendingIterator();