Added logging

pull/198/head
M66B 3 years ago
parent 67e88fe9f6
commit c99a0fdac7

@ -4021,13 +4021,13 @@ class Core {
if (notifications.size() == 0) { if (notifications.size() == 0) {
String tag = "unseen." + group + "." + 0; String tag = "unseen." + group + "." + 0;
Log.i("Notify cancel tag=" + tag); EntityLog.log(context, "Notify cancel tag=" + tag);
nm.cancel(tag, 1); nm.cancel(tag, 1);
} }
for (Long id : remove) { for (Long id : remove) {
String tag = "unseen." + group + "." + Math.abs(id); String tag = "unseen." + group + "." + Math.abs(id);
Log.i("Notify cancel tag=" + tag + " id=" + id); EntityLog.log(context, "Notify cancel tag=" + tag + " id=" + id);
nm.cancel(tag, 1); nm.cancel(tag, 1);
data.groupNotifying.get(group).remove(id); data.groupNotifying.get(group).remove(id);

Loading…
Cancel
Save