We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5a9b13 commit b4832f4Copy full SHA for b4832f4
src/com/rabbitmq/client/impl/AMQCommand.java
@@ -207,7 +207,8 @@ public String toString(boolean suppressBody){
207
byte[] body = getContentBody();
208
String contentStr;
209
try {
210
- contentStr = suppressBody ? (body.length + " bytes of payload") : ("\"" + new String(body) + "\"");
+ contentStr = suppressBody ? (body.length + " bytes of payload") :
211
+ ("\"" + new String(body) + "\"");
212
} catch (Exception e) {
213
contentStr = "|" + body.length + "|";
214
}
0 commit comments