Improved debug info

This commit is contained in:
M66B 2023-07-04 15:10:59 +02:00
parent da1815cee5
commit 9d192089ae
1 changed files with 2 additions and 1 deletions

View File

@ -2529,7 +2529,8 @@ public class Log {
folder.type + (folder.inherited_type == null ? "" : "/" + folder.inherited_type) +
(folder.unified ? " unified" : "") +
(folder.notify ? " notify" : "") +
" poll=" + folder.poll + "/" + folder.poll_factor +
" poll=" + folder.poll + (folder.poll || EntityFolder.INBOX.equals(folder.type) ? "" : " !!! ") +
" factor=" + folder.poll_factor +
" days=" + getDays(folder.sync_days) + "/" + getDays(folder.keep_days) +
" msgs=" + folder.content + "/" + folder.messages + "/" + folder.total +
" ops=" + db.operation().getOperationCount(folder.id, null) +