ARTEMIS-5010 just a better description on a log.warn

This commit is contained in:
Clebert Suconic 2024-08-28 18:59:05 -04:00
parent 465e985388
commit 898c09cb93
1 changed files with 2 additions and 1 deletions

View File

@ -205,7 +205,8 @@ public class AMQPMirrorControllerTarget extends ProtonAbstractReceiver implement
@Override
public void onError(int errorCode, String errorMessage) {
logger.warn("error code = {} / message = {}", errorCode, errorMessage);
// we are not doing any IO here, this is extremely unlikely to happen:
logger.warn("IO Error code on flushing OperationContext for AMQPMirrorControllerTarget . error code = {} / message = {}", errorCode, errorMessage);
latch.countDown();
}
});