Repository: activemq-artemis Updated Branches: refs/heads/master 596f355b2 -> e44c99d88
ARTEMIS-809 Removing Large message body from toString() Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/e44c99d8 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/e44c99d8 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/e44c99d8 Branch: refs/heads/master Commit: e44c99d88423b9fe9ad0cd06d10ea0277d284f5b Parents: 596f355 Author: Clebert Suconic <[email protected]> Authored: Thu Oct 20 11:12:04 2016 -0400 Committer: Clebert Suconic <[email protected]> Committed: Thu Oct 20 11:19:13 2016 -0400 ---------------------------------------------------------------------- .../core/impl/wireformat/SessionSendContinuationMessage.java | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/e44c99d8/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java ---------------------------------------------------------------------- diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java index 16fd073..b4ec027 100644 --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/wireformat/SessionSendContinuationMessage.java @@ -16,8 +16,6 @@ */ package org.apache.activemq.artemis.core.protocol.core.impl.wireformat; -import java.util.Arrays; - import org.apache.activemq.artemis.api.core.ActiveMQBuffer; import org.apache.activemq.artemis.api.core.client.SendAcknowledgementHandler; import org.apache.activemq.artemis.core.message.impl.MessageInternal; @@ -124,7 +122,6 @@ public class SessionSendContinuationMessage extends SessionContinuationMessage { @Override public String toString() { StringBuffer buff = new StringBuffer(getParentString()); - buff.append(", body=" + Arrays.toString(body)); buff.append(", continues=" + continues); buff.append(", message=" + message); buff.append(", messageBodySize=" + messageBodySize);
