Reduced logging

pull/215/head
M66B 6 months ago
parent ef0c01e84e
commit ee9b5aa901

@ -94,7 +94,10 @@ public class ServiceAuthenticator extends Authenticator {
if (ex.getCause() instanceof InterruptedException)
Log.i(ex);
else if (ex.getMessage() != null && ex.getMessage().startsWith("OAuth refresh"))
Log.w(ex);
if (Helper.isPlayStoreInstall())
Log.i(ex);
else
Log.w(ex);
else
Log.e(ex);
}

Loading…
Cancel
Save