ARTEMIS-809 Removing Large message body from toString()

This commit is contained in:
Clebert Suconic 2016-10-20 11:12:04 -04:00
parent 596f355b20
commit e44c99d884
1 changed files with 0 additions and 3 deletions

View File

@ -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);