Reduce logging

This commit is contained in:
M66B 2021-02-07 18:15:26 +01:00
parent 96335e38b2
commit d0d0960f1f
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}