mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-21 05:37:07 +00:00
Reduced logging
This commit is contained in:
parent
b3dce2295a
commit
c05731ab5c
1 changed files with 5 additions and 1 deletions
|
@ -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 +
|
||||
|
|
Loading…
Reference in a new issue