mirror of https://github.com/apache/activemq.git
Fix unintended String concatenation
This commit is contained in:
parent
85a3328579
commit
7bd37d7121
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue