Improved logging

This commit is contained in:
M66B 2021-10-03 07:40:36 +02:00
parent 2a11d41ed1
commit d0a037373c
1 changed files with 3 additions and 1 deletions

View File

@ -2326,8 +2326,10 @@ class Core {
Log.i("Delete local count=" + local.size());
for (String name : local.keySet()) {
EntityFolder folder = local.get(name);
if (EntityFolder.INBOX.equals(folder.type))
if (EntityFolder.INBOX.equals(folder.type)) {
Log.e(account.host + " keep inbox");
continue;
}
List<EntityFolder> childs = parentFolders.get(name);
if (EntityFolder.USER.equals(folder.type) ||
childs == null || childs.size() == 0) {