diff --git a/app/src/main/java/eu/faircode/email/Core.java b/app/src/main/java/eu/faircode/email/Core.java index 3b0205554e..d3d3b858e0 100644 --- a/app/src/main/java/eu/faircode/email/Core.java +++ b/app/src/main/java/eu/faircode/email/Core.java @@ -3519,8 +3519,11 @@ class Core { String tag = "unseen." + group + "." + Math.abs(id); Notification notification = builder.build(); - Log.i("Notifying tag=" + tag + " id=" + id + " group=" + notification.getGroup() + - (Build.VERSION.SDK_INT < Build.VERSION_CODES.O ? "" : " channel=" + notification.getChannelId())); + EntityLog.log(context, "Notifying tag=" + tag + + " id=" + id + " group=" + notification.getGroup() + + (Build.VERSION.SDK_INT < Build.VERSION_CODES.O + ? " sdk=" + Build.VERSION.SDK_INT + : " channel=" + notification.getChannelId())); try { nm.notify(tag, 1, notification); } catch (Throwable ex) {