Reduced logging

This commit is contained in:
M66B 2021-03-13 21:04:49 +01:00
parent 8b5087be2a
commit 3832d1ebaf
2 changed files with 5 additions and 2 deletions

View File

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

View File

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