Added logging

This commit is contained in:
M66B 2021-05-05 18:57:33 +02:00
parent 67e88fe9f6
commit c99a0fdac7
1 changed files with 2 additions and 2 deletions

View File

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