mirror of https://github.com/apache/activemq.git
Merge pull request #1042 from PascalSchumacher/slow_consumer_log_message_superfluous_placeholder
AdvisoryBroker#handleFireFailure: Remove unused placeholder in warn l…
This commit is contained in:
commit
360a45488a
|
@ -851,8 +851,7 @@ public class AdvisoryBroker extends BrokerFilter {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleFireFailure(String message, Throwable cause) {
|
private void handleFireFailure(String message, Throwable cause) {
|
||||||
LOG.warn("Failed to fire {} advisory, reason: {}", message, cause);
|
LOG.warn("Failed to fire {} advisory", message, cause);
|
||||||
LOG.debug("{} detail: {}", message, cause, cause);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void fireAdvisory(ConnectionContext context, ActiveMQTopic topic, Command command) throws Exception {
|
protected void fireAdvisory(ConnectionContext context, ActiveMQTopic topic, Command command) throws Exception {
|
||||||
|
|
Loading…
Reference in New Issue