Reduced logging

pull/194/head
M66B 5 years ago
parent 0dad701210
commit 581596e616

@ -1662,11 +1662,15 @@ class Core {
} }
// Some email servers are slow with adding sent messages // Some email servers are slow with adding sent messages
if (retry) if (retry) {
Log.e(folder.name + " EXISTS retry" + String msg = folder.name + " EXISTS retry" +
" found=" + (imessages == null ? null : imessages.length) + " found=" + (imessages == null ? null : imessages.length) +
" host=" + account.host); " host=" + account.host;
else if (imessages == null || imessages.length == 0) { if (BuildConfig.PLAY_STORE_RELEASE)
Log.w(msg);
else
Log.e(msg);
} else if (imessages == null || imessages.length == 0) {
long next = new Date().getTime() + EXISTS_RETRY_DELAY; long next = new Date().getTime() + EXISTS_RETRY_DELAY;
Intent intent = new Intent(context, ServiceUI.class); Intent intent = new Intent(context, ServiceUI.class);

Loading…
Cancel
Save