diff options
| author | 2020-02-15 07:52:42 -0500 | |
|---|---|---|
| committer | 2020-02-15 07:53:25 -0500 | |
| commit | a6640a99f5eaba2fee48979529b222020cfd5c82 (patch) | |
| tree | 2836ebf809d4cfef343ce317ec39fdc137cb79b5 | |
| parent | 30965c45cedb4abd32a2975cdc3f9c62b43ef13b (diff) | |
Remove log spam
Test: build/flash
Fixes: 149554565
Change-Id: Id54672cbd1fc329fe872e97d25e0e17e0c9437a5
| -rwxr-xr-x | services/core/java/com/android/server/notification/NotificationManagerService.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index d0d0f5a3a233..b2a25502a208 100755 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -8852,7 +8852,9 @@ public class NotificationManagerService extends SystemService { final StatusBarNotification sbn, final boolean isVisible) { final String key = sbn.getKey(); - Slog.d(TAG, "notifyAssistantVisibilityChangedLocked: " + key); + if (DBG) { + Slog.d(TAG, "notifyAssistantVisibilityChangedLocked: " + key); + } notifyAssistantLocked( sbn, false /* sameUserOnly */, |