Added logging

This commit is contained in:
M66B
2020-07-25 19:48:31 +02:00
parent 6a98b75603
commit 2367d260c0

View File

@@ -3198,8 +3198,10 @@ class Core {
String channelId = message.getNotificationChannelId();
if (channelId != null) {
NotificationChannel channel = nm.getNotificationChannel(channelId);
if (channel != null && channel.getImportance() == NotificationManager.IMPORTANCE_NONE)
if (channel != null && channel.getImportance() == NotificationManager.IMPORTANCE_NONE) {
Log.i("Notify disabled=" + message.id + " channel=" + channelId);
continue;
}
}
}