修改toString方法

2.7.0
648540858 2024-04-18 17:05:03 +08:00
parent 2a765a93eb
commit f536123b11
2 changed files with 4 additions and 4 deletions

View File

@ -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 +
'}';
}

View File

@ -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 +
'}';
}