Reduced logging

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

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

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

Loading…
Cancel
Save