添加RedisRpcResponse的toString

This commit is contained in:
648540858
2024-04-18 17:00:13 +08:00
parent 6025eb29fd
commit 2a765a93eb

View File

@@ -84,4 +84,16 @@ public class RedisRpcResponse {
public void setBody(Object body) {
this.body = body;
}
@Override
public String toString() {
return "RedisRpcResponse{" +
"fromId='" + fromId + '\'' +
", toId='" + toId + '\'' +
", sn=" + sn +
", statusCode=" + statusCode +
", uri='" + uri + '\'' +
", body=" + body +
'}';
}
}