public String toString()

in tchannel-core/src/main/java/com/uber/tchannel/messages/Request.java [116:127]


    public String toString() {
        return String.format(
            "<%s id=%d service=%s transportHeaders=%s arg1=%s arg2=%s arg3=%s>",
            this.getClass().getSimpleName(),
            this.id,
            this.service,
            this.transportHeaders,
            arg1 == null ? "null" : arg1.toString(CharsetUtil.UTF_8),
            arg2 == null ? "null" : arg2.toString(CharsetUtil.UTF_8),
            arg3 == null ? "null" : arg3.toString(CharsetUtil.UTF_8)
        );
    }