mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 10:47:28 +00:00
Reduce logging
This commit is contained in:
parent
96335e38b2
commit
d0d0960f1f
1 changed files with 4 additions and 1 deletions
|
@ -1155,7 +1155,10 @@ class Core {
|
||||||
onFetch(context, fargs, target, istore, itarget, state);
|
onFetch(context, fargs, target, istore, itarget, state);
|
||||||
}
|
}
|
||||||
} catch (Throwable ex) {
|
} catch (Throwable ex) {
|
||||||
Log.w(ex);
|
if (ex instanceof IllegalArgumentException)
|
||||||
|
Log.i(ex);
|
||||||
|
else
|
||||||
|
Log.e(ex);
|
||||||
if (fetch)
|
if (fetch)
|
||||||
sync = true;
|
sync = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue