修改toString方法
parent
2a765a93eb
commit
f536123b11
|
@ -74,10 +74,10 @@ public class RedisRpcRequest {
|
|||
@Override
|
||||
public String toString() {
|
||||
return "RedisRpcRequest{" +
|
||||
"fromId='" + fromId + '\'' +
|
||||
"uri='" + uri + '\'' +
|
||||
", fromId='" + fromId + '\'' +
|
||||
", toId='" + toId + '\'' +
|
||||
", sn=" + sn +
|
||||
", uri='" + uri + '\'' +
|
||||
", param=" + param +
|
||||
'}';
|
||||
}
|
||||
|
|
|
@ -88,11 +88,11 @@ public class RedisRpcResponse {
|
|||
@Override
|
||||
public String toString() {
|
||||
return "RedisRpcResponse{" +
|
||||
"fromId='" + fromId + '\'' +
|
||||
"uri='" + uri + '\'' +
|
||||
", fromId='" + fromId + '\'' +
|
||||
", toId='" + toId + '\'' +
|
||||
", sn=" + sn +
|
||||
", statusCode=" + statusCode +
|
||||
", uri='" + uri + '\'' +
|
||||
", body=" + body +
|
||||
'}';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue