Corrected debug log message

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1197196 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2011-11-03 16:03:58 +00:00
parent ae8e671030
commit 5dffa49321
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ public class HttpAuthenticator {
Queue<AuthOption> authOptions = authStrategy.select(challenges, host, response, context); Queue<AuthOption> authOptions = authStrategy.select(challenges, host, response, context);
if (authOptions != null && !authOptions.isEmpty()) { if (authOptions != null && !authOptions.isEmpty()) {
if (this.log.isDebugEnabled()) { if (this.log.isDebugEnabled()) {
this.log.debug("Selected authorization options: " + authOptions); this.log.debug("Selected authentication options: " + authOptions);
} }
authState.setState(AuthProtocolState.CHALLENGED); authState.setState(AuthProtocolState.CHALLENGED);
authState.update(authOptions); authState.update(authOptions);