Reduced logging

pull/194/head
M66B 4 years ago
parent 97084bfc35
commit b2af43438e

@ -74,7 +74,10 @@ public class ServiceAuthenticator extends Authenticator {
try {
token = refreshToken(false);
} catch (Throwable ex) {
Log.e(ex);
if (ex.getCause() instanceof InterruptedException)
Log.w(ex);
else
Log.e(ex);
}
Log.i(user + " returning " + (auth == AUTH_TYPE_PASSWORD ? "password" : "token"));

Loading…
Cancel
Save