添加RedisRpcResponse的toString
parent
6025eb29fd
commit
2a765a93eb
|
@ -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 +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue