Reduced logging

This commit is contained in:
M66B 2021-02-24 14:05:11 +01:00
parent c4c5f94194
commit b5f1e5081f
1 changed files with 4 additions and 8 deletions

View File

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