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:
JB Onofré 2023-10-15 08:09:13 +02:00 committed by GitHub
commit 360a45488a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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 {