mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Added logging
This commit is contained in:
parent
67e88fe9f6
commit
c99a0fdac7
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue