Improved logging

This commit is contained in:
M66B 2020-10-26 12:05:20 +01:00
parent 5368501c95
commit d22d4553d7
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public class ServiceAuthenticator extends Authenticator {
Log.e(ex);
}
Log.i(user + " returning password");
Log.i(user + " returning " + (auth == AUTH_TYPE_PASSWORD ? "password" : "token"));
return new PasswordAuthentication(user, token);
}