fix typo log debug messages

This commit is contained in:
smashtakov 2020-06-03 12:10:00 +03:00 committed by Oleg Kalnichevski
parent 9cfdd54c94
commit 546351160b
1 changed files with 2 additions and 2 deletions

View File

@ -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 {