Loading services/core/java/com/android/server/notification/NotificationManagerService.java +8 −3 Original line number Diff line number Diff line Loading @@ -3997,9 +3997,14 @@ public class NotificationManagerService extends SystemService { + ", notificationUid=" + notificationUid + ", notification=" + notification; Log.e(TAG, noChannelStr); boolean appNotificationsOff = mRankingHelper.getImportance(pkg, notificationUid) == NotificationManager.IMPORTANCE_NONE; if (!appNotificationsOff) { doChannelWarningToast("Developer warning for package \"" + pkg + "\"\n" + "Failed to post notification on channel \"" + channelId + "\"\n" + "See log for more details"); } return; } Loading Loading
services/core/java/com/android/server/notification/NotificationManagerService.java +8 −3 Original line number Diff line number Diff line Loading @@ -3997,9 +3997,14 @@ public class NotificationManagerService extends SystemService { + ", notificationUid=" + notificationUid + ", notification=" + notification; Log.e(TAG, noChannelStr); boolean appNotificationsOff = mRankingHelper.getImportance(pkg, notificationUid) == NotificationManager.IMPORTANCE_NONE; if (!appNotificationsOff) { doChannelWarningToast("Developer warning for package \"" + pkg + "\"\n" + "Failed to post notification on channel \"" + channelId + "\"\n" + "See log for more details"); } return; } Loading