git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@965517 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2010-07-19 14:59:27 +00:00
parent d85895666a
commit 607f1ef669
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ public class LoggingBrokerPlugin extends BrokerPluginSupport {
@Override
public void send(ProducerBrokerExchange producerExchange, Message messageSend) throws Exception {
if (isLogAll() || isLogProducerEvents()) {
LOG.info("Sending message : " + messageSend);
LOG.info("Sending message : " + messageSend.copy());
}
super.send(producerExchange, messageSend);
}