mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-03 10:16:45 +00:00
Reduced logging
This commit is contained in:
parent
97084bfc35
commit
b2af43438e
1 changed files with 4 additions and 1 deletions
|
@ -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…
Reference in a new issue