Fix unintended String concatenation

This commit is contained in:
Marcono1234 2021-01-05 00:44:08 +01:00 committed by jbonofre
parent 85a3328579
commit 7bd37d7121
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ public class BrokerBenchmark extends BrokerTestSupport {
if (msg != null) {
connection.send(createAck(consumerInfo, msg, counter, MessageAck.STANDARD_ACK_TYPE));
} else if (receiveCounter.get() < consumeCount) {
LOG.info("Consumer stall, waiting for message #" + receiveCounter.get() + 1);
LOG.info("Consumer stall, waiting for message #" + (receiveCounter.get() + 1));
}
}