mirror of https://github.com/M66B/FairEmail.git
Debug: log token/password
This commit is contained in:
parent
17f401340d
commit
69ac5821d5
|
@ -82,7 +82,9 @@ public class ServiceAuthenticator extends Authenticator {
|
||||||
Log.e(ex);
|
Log.e(ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.i(user + " returning " + (auth == AUTH_TYPE_PASSWORD ? "password" : "token"));
|
Log.i(user + " returning " +
|
||||||
|
(auth == AUTH_TYPE_PASSWORD ? "password" : "token") +
|
||||||
|
(BuildConfig.DEBUG ? "=" + token : ""));
|
||||||
return new PasswordAuthentication(user, token);
|
return new PasswordAuthentication(user, token);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue