Reduce logging

pull/194/head
M66B 4 years ago
parent 96335e38b2
commit d0d0960f1f

@ -1155,7 +1155,10 @@ class Core {
onFetch(context, fargs, target, istore, itarget, state);
}
} catch (Throwable ex) {
Log.w(ex);
if (ex instanceof IllegalArgumentException)
Log.i(ex);
else
Log.e(ex);
if (fetch)
sync = true;
}

Loading…
Cancel
Save