mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-21 21:57:19 +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())
|
for (TupleOperationEx s : similar.keySet())
|
||||||
ops.remove(s);
|
ops.remove(s);
|
||||||
} catch (Throwable ex) {
|
} 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 +
|
EntityLog.log(context, folder.name +
|
||||||
" op=" + op.name +
|
" op=" + op.name +
|
||||||
" try=" + op.tries +
|
" try=" + op.tries +
|
||||||
|
|
Loading…
Reference in a new issue