mirror of https://github.com/apache/activemq.git
AdvisoryBroker#handleFireFailure: Remove unused placeholder in warn log message. All information is already logged at warn level, so remove additional debug log message.
This commit is contained in:
parent
8d322df244
commit
97d4f3f6ad
|
@ -851,8 +851,7 @@ public class AdvisoryBroker extends BrokerFilter {
|
|||
}
|
||||
|
||||
private void handleFireFailure(String message, Throwable cause) {
|
||||
LOG.warn("Failed to fire {} advisory, reason: {}", message, cause);
|
||||
LOG.debug("{} detail: {}", message, cause, cause);
|
||||
LOG.warn("Failed to fire {} advisory", message, cause);
|
||||
}
|
||||
|
||||
protected void fireAdvisory(ConnectionContext context, ActiveMQTopic topic, Command command) throws Exception {
|
||||
|
|
Loading…
Reference in New Issue