From 934dccb71be079abe68018ece32b25dfdd78a848 Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 13 Aug 2023 17:25:14 +0200 Subject: [PATCH] Improved debug info --- app/src/main/java/eu/faircode/email/Log.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/eu/faircode/email/Log.java b/app/src/main/java/eu/faircode/email/Log.java index e55d9b74e7..57b0efbc14 100644 --- a/app/src/main/java/eu/faircode/email/Log.java +++ b/app/src/main/java/eu/faircode/email/Log.java @@ -2504,7 +2504,7 @@ public class Log { } catch (Throwable ignored) { } - size += write(os, account.name + (account.primary ? "*" : "") + + size += write(os, account.id + ":" + account.name + (account.primary ? "*" : "") + " " + (account.protocol == EntityAccount.TYPE_IMAP ? "IMAP" : "POP") + " [" + (account.provider == null ? "" : account.provider) + ":" + ServiceAuthenticator.getAuthTypeName(account.auth_type) + "]" + @@ -2533,7 +2533,7 @@ public class Log { int unseen = db.message().countUnseen(folder.id); int hidden = db.message().countHidden(folder.id); int notifying = db.message().countNotifying(folder.id); - size += write(os, "- " + folder.name + " " + + size += write(os, "- " + folder.id + ":" + folder.name + " " + folder.type + (folder.inherited_type == null ? "" : "/" + folder.inherited_type) + (folder.unified ? " unified" : "") + (folder.notify ? " notify" : "") +