Reduced logging

pull/194/head
M66B 4 years ago
parent 8b5087be2a
commit 3832d1ebaf

@ -556,7 +556,10 @@ public class ContactInfo {
try { try {
return future.get(); return future.get();
} catch (Throwable ex) { } catch (Throwable ex) {
Log.w(ex); if (ex.getCause() instanceof FileNotFoundException)
Log.i(ex);
else
Log.e(ex);
} }
return null; return null;

@ -75,7 +75,7 @@ public class ServiceAuthenticator extends Authenticator {
token = refreshToken(false); token = refreshToken(false);
} catch (Throwable ex) { } catch (Throwable ex) {
if (ex.getCause() instanceof InterruptedException) if (ex.getCause() instanceof InterruptedException)
Log.w(ex); Log.i(ex);
else else
Log.e(ex); Log.e(ex);
} }

Loading…
Cancel
Save