Minor tweaks to auth execution logging

This commit is contained in:
Oleg Kalnichevski 2020-04-05 12:43:26 +02:00
parent 92100e13a6
commit 9ea79c68c5
2 changed files with 2 additions and 1 deletions

View File

@ -257,6 +257,7 @@ public boolean updateAuthState(
}
final Queue<AuthScheme> authOptions = new LinkedList<>();
this.log.debug("Selecting authentication options");
for (final AuthScheme authScheme: preferredSchemes) {
try {
final String schemeName = authScheme.getName();

View File

@ -96,7 +96,7 @@ public ProtocolExec(
this.httpProcessor = Args.notNull(httpProcessor, "HTTP protocol processor");
this.targetAuthStrategy = Args.notNull(targetAuthStrategy, "Target authentication strategy");
this.proxyAuthStrategy = Args.notNull(proxyAuthStrategy, "Proxy authentication strategy");
this.authenticator = new HttpAuthenticator(log);
this.authenticator = new HttpAuthenticator();
}
@Override