mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Debug info: blocked senders
This commit is contained in:
@@ -2419,7 +2419,7 @@ public class Log {
|
||||
" auto_optimize=" + auto_optimize + (auto_optimize ? " !!!" : "") +
|
||||
" notifications=" + (filter == null ? null :
|
||||
Helper.getInterruptionFilter(filter) +
|
||||
(filter == NotificationManager.INTERRUPTION_FILTER_ALL ? "" : "!!!")) + "\r\n" +
|
||||
(filter == NotificationManager.INTERRUPTION_FILTER_ALL ? "" : " !!!")) + "\r\n" +
|
||||
"accounts=" + accounts.size() +
|
||||
" folders=" + db.folder().countSync() + "/" + db.folder().countTotal() +
|
||||
" messages=" + db.message().countTotal() +
|
||||
@@ -2499,6 +2499,8 @@ public class Log {
|
||||
messages += folder.messages;
|
||||
}
|
||||
|
||||
int blocked = db.contact().countBlocked(account.id);
|
||||
|
||||
boolean unmetered = false;
|
||||
boolean ignore_schedule = false;
|
||||
try {
|
||||
@@ -2522,6 +2524,7 @@ public class Log {
|
||||
" poll=" + account.poll_interval +
|
||||
" ondemand=" + account.ondemand + (account.ondemand ? " !!!" : "") +
|
||||
" msgs=" + content + "/" + messages + " max=" + account.max_messages +
|
||||
" blocked=" + blocked + (blocked == 0 ? "" : " !!!") +
|
||||
" ops=" + db.operation().getOperationCount(account.id) +
|
||||
" schedule=" + (!ignore_schedule) + (ignore_schedule ? " !!!" : "") +
|
||||
" unmetered=" + unmetered + (unmetered ? " !!!" : "") +
|
||||
|
||||
Reference in New Issue
Block a user