Added logging

This commit is contained in:
M66B 2020-02-11 16:22:53 +01:00
parent b3ec457738
commit 2ed151acab
1 changed files with 4 additions and 1 deletions

View File

@ -3415,8 +3415,11 @@ class Core {
maxConnections = false;
lastActivity = null;
synchronized (this) {
for (FolderPriority key : sequence.keySet())
for (FolderPriority key : sequence.keySet()) {
batch.put(key, sequence.get(key));
if (BuildConfig.DEBUG)
Log.i("=== Reset " + key.folder + ":" + key.priority + " batch=" + batch.get(key));
}
}
}