core/src/main/java/org/apache/seata/core/event/RateLimitEvent.java [95:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString() {
        return "RateLimitEvent{" +
                "traceId='" + traceId + '\'' +
                ", limitType='" + limitType + '\'' +
                ", applicationId='" + applicationId + '\'' +
                ", clientId='" + clientId + '\'' +
                ", serverIpAddressAndPort='" + serverIpAddressAndPort + '\'' +
                '}';
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



server/src/main/java/org/apache/seata/server/limit/ratelimit/RateLimitInfo.java [111:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String toString() {
        return "RateLimitInfo{" +
                "traceId='" + traceId + '\'' +
                ", limitType='" + limitType + '\'' +
                ", applicationId='" + applicationId + '\'' +
                ", clientId='" + clientId + '\'' +
                ", serverIpAddressAndPort='" + serverIpAddressAndPort + '\'' +
                '}';
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



