commit | bb1d7d219cc89b6d0779f287f03111956b2de6ae | [log] [tgz] |
---|---|---|
author | Julia Reynolds <juliacr@google.com> | Tue Apr 18 10:30:51 2017 -0400 |
committer | Julia Reynolds <juliacr@google.com> | Tue Apr 18 14:12:16 2017 -0400 |
tree | e474555899020d8c5adf8de7153ea169e4efd8c0 | |
parent | feb7341b2f49059812c53bf53ae23698f719d1e1 [diff] |
Remove log spam Intercepted entries are in zen log already. Change-Id: I16d81113b4a8a116c1f64f00913763f6c2cf3cd4 Fixes: 37446463 Test: take a bug report
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index 8166bc3..341f499 100644 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java
@@ -3607,7 +3607,7 @@ final boolean aboveThreshold = record.getImportance() >= NotificationManager.IMPORTANCE_DEFAULT; final boolean canInterrupt = aboveThreshold && !record.isIntercepted(); - if (DBG || record.isIntercepted()) + if (DBG) Slog.v(TAG, "pkg=" + record.sbn.getPackageName() + " canInterrupt=" + canInterrupt + " intercept=" + record.isIntercepted()