Skip to content

Commit

Permalink
better logging when more than maxBufferedMessages buffered in paused …
Browse files Browse the repository at this point in the history
…consumer

Signed-off-by: jzajic <jan.zajic@corpus.cz>
  • Loading branch information
jan-zajic committed Mar 19, 2017
1 parent 5d63c04 commit ae241fc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -177,7 +177,7 @@ public void handle(Message<T> message) {
if (discardHandler != null) {
discardHandler.handle(message);
} else {
log.warn("Discarding message as more than " + maxBufferedMessages + " buffered in paused consumer");
log.warn("Discarding message as more than " + maxBufferedMessages + " buffered in paused consumer. address: " + address);
}
}
return;
Expand Down

0 comments on commit ae241fc

Please sign in to comment.