Reduced logging

This commit is contained in:
M66B 2024-04-13 09:03:30 +02:00
parent ef0c01e84e
commit ee9b5aa901
1 changed files with 4 additions and 1 deletions

View File

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