Loading services/core/java/com/android/server/notification/NotificationManagerService.java +2 −2 Original line number Diff line number Diff line Loading @@ -2307,7 +2307,7 @@ public class NotificationManagerService extends SystemService { synchronized (mNotificationList) { final StatusBarNotification n = r.sbn; Slog.d(TAG, "EnqueueNotificationRunnable.run for: " + n.getKey()); if (DBG) Slog.d(TAG, "EnqueueNotificationRunnable.run for: " + n.getKey()); NotificationRecord old = mNotificationsByKey.get(n.getKey()); if (old != null) { // Retain ranking information from previous record Loading @@ -2328,7 +2328,7 @@ public class NotificationManagerService extends SystemService { handleGroupedNotificationLocked(r, old, callingUid, callingPid); boolean ignoreNotification = removeUnusedGroupedNotificationLocked(r, old, callingUid, callingPid); Slog.d(TAG, "ignoreNotification is " + ignoreNotification); if (DBG) Slog.d(TAG, "ignoreNotification is " + ignoreNotification); // This conditional is a dirty hack to limit the logging done on // behalf of the download manager without affecting other apps. Loading services/core/java/com/android/server/notification/NotificationRecord.java +8 −6 Original line number Diff line number Diff line Loading @@ -227,13 +227,15 @@ public final class NotificationRecord { final int N = notification.actions.length; for (int i=0; i<N; i++) { final Notification.Action action = notification.actions[i]; if (action != null) { pw.println(String.format("%s [%d] \"%s\" -> %s", prefix, i, action.title, action.actionIntent.toString() action.actionIntent == null ? "null" : action.actionIntent.toString() )); } } pw.println(prefix + " }"); } if (notification.extras != null && notification.extras.size() > 0) { Loading Loading
services/core/java/com/android/server/notification/NotificationManagerService.java +2 −2 Original line number Diff line number Diff line Loading @@ -2307,7 +2307,7 @@ public class NotificationManagerService extends SystemService { synchronized (mNotificationList) { final StatusBarNotification n = r.sbn; Slog.d(TAG, "EnqueueNotificationRunnable.run for: " + n.getKey()); if (DBG) Slog.d(TAG, "EnqueueNotificationRunnable.run for: " + n.getKey()); NotificationRecord old = mNotificationsByKey.get(n.getKey()); if (old != null) { // Retain ranking information from previous record Loading @@ -2328,7 +2328,7 @@ public class NotificationManagerService extends SystemService { handleGroupedNotificationLocked(r, old, callingUid, callingPid); boolean ignoreNotification = removeUnusedGroupedNotificationLocked(r, old, callingUid, callingPid); Slog.d(TAG, "ignoreNotification is " + ignoreNotification); if (DBG) Slog.d(TAG, "ignoreNotification is " + ignoreNotification); // This conditional is a dirty hack to limit the logging done on // behalf of the download manager without affecting other apps. Loading
services/core/java/com/android/server/notification/NotificationRecord.java +8 −6 Original line number Diff line number Diff line Loading @@ -227,13 +227,15 @@ public final class NotificationRecord { final int N = notification.actions.length; for (int i=0; i<N; i++) { final Notification.Action action = notification.actions[i]; if (action != null) { pw.println(String.format("%s [%d] \"%s\" -> %s", prefix, i, action.title, action.actionIntent.toString() action.actionIntent == null ? "null" : action.actionIntent.toString() )); } } pw.println(prefix + " }"); } if (notification.extras != null && notification.extras.size() > 0) { Loading