fix typo log debug messages
This commit is contained in:
parent
9cfdd54c94
commit
546351160b
|
@ -217,7 +217,7 @@ public final class AsyncProtocolExec implements AsyncExecChainHandler {
|
|||
if (targetAuthExchange.getState() == AuthExchange.State.SUCCESS
|
||||
&& targetAuthExchange.isConnectionBased()) {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug(exchangeId + ": esetting target auth state");
|
||||
log.debug(exchangeId + ": resetting target auth state");
|
||||
}
|
||||
targetAuthExchange.reset();
|
||||
}
|
||||
|
@ -226,7 +226,7 @@ public final class AsyncProtocolExec implements AsyncExecChainHandler {
|
|||
if (challenged.get()) {
|
||||
if (entityProducer != null && !entityProducer.isRepeatable()) {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug(exchangeId + ": annot retry non-repeatable request");
|
||||
log.debug(exchangeId + ": cannot retry non-repeatable request");
|
||||
}
|
||||
asyncExecCallback.completed();
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue