Reduced logging

pull/200/head
M66B 3 years ago
parent b3dce2295a
commit c05731ab5c

@ -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…
Cancel
Save