mirror of
https://github.com/apache/activemq.git
synced 2025-02-19 00:21:25 +00:00
Merge pull request #483 from PascalSchumacher/add_mising_argument_to_log_message
Add missing format argument for log message in AbortSlowAckConsumerSt…
This commit is contained in:
commit
ef763375b2
@ -164,9 +164,10 @@ public class AbortSlowAckConsumerStrategy extends AbortSlowConsumerStrategy {
|
||||
getMaxSlowCount() > 0 && entry.getValue().slowCount >= getMaxSlowCount()) {
|
||||
|
||||
LOG.trace("Transferring consumer {} to the abort list: {} slow duration = {}, slow count = {}",
|
||||
new Object[]{ entry.getKey().getConsumerInfo().getConsumerId(),
|
||||
entry.getKey().getConsumerInfo().getConsumerId(),
|
||||
toAbort,
|
||||
entry.getValue().markCount * getCheckPeriod(),
|
||||
entry.getValue().getSlowCount() });
|
||||
entry.getValue().getSlowCount());
|
||||
|
||||
toAbort.put(entry.getKey(), entry.getValue());
|
||||
slowConsumers.remove(entry.getKey());
|
||||
|
Loading…
x
Reference in New Issue
Block a user