mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-21 01:15:50 +00:00
ARTEMIS-3475: fix recursion and duplicate class name print from 2481a784f3ba7648f4b4322335bd3d4061aa4b01
This commit is contained in:
parent
ac419080d0
commit
515ac3a7cb
@ -425,7 +425,7 @@ public class PacketImpl implements Packet {
|
||||
}
|
||||
|
||||
protected String getPacketString() {
|
||||
return this.getClass().getSimpleName() + "(" + this.getClass().getSimpleName() + ")[type=" + type + ", channelID=" + channelID + ", responseAsync=" + isResponseAsync() + ", requiresResponse=" + isRequiresResponse() + ", correlationID=" + getCorrelationID();
|
||||
return this.getClass().getSimpleName() + "[type=" + type + ", channelID=" + channelID + ", responseAsync=" + isResponseAsync() + ", requiresResponse=" + isRequiresResponse() + ", correlationID=" + getCorrelationID();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -63,7 +63,7 @@ public final class ReplicationResponseMessageV2 extends ReplicationResponseMessa
|
||||
|
||||
@Override
|
||||
protected String getPacketString() {
|
||||
StringBuffer buf = new StringBuffer(getPacketString());
|
||||
StringBuffer buf = new StringBuffer(super.getPacketString());
|
||||
buf.append(", synchronizationIsFinishedAcknowledgement=" + synchronizationIsFinishedAcknowledgement);
|
||||
return buf.toString();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user