1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-21 05:37:07 +00:00

Reduced logging

This commit is contained in:
M66B 2021-07-28 17:02:11 +02:00
parent b3dce2295a
commit c05731ab5c

View file

@ -478,7 +478,11 @@ class Core {
for (TupleOperationEx s : similar.keySet())
ops.remove(s);
} catch (Throwable ex) {
Log.e(folder.name, ex);
if (ex instanceof OperationCanceledException)
Log.w(folder.name, ex);
else
Log.e(folder.name, ex);
EntityLog.log(context, folder.name +
" op=" + op.name +
" try=" + op.tries +