Polish InvocationResult.toString()

This commit is contained in:
Johnny Lim
2018-11-01 12:55:44 +09:00
committed by Gary Russell
parent 228d25b0f9
commit 1dc1eef116

View File

@@ -52,7 +52,7 @@ public final class InvocationResult {
@Override
public String toString() {
return "InvocationResult [result=" + this.result == null ? null : this.result
return "InvocationResult [result=" + this.result
+ ", sendTo=" + this.sendTo == null ? null : this.sendTo.getExpressionString()
+ ", messageReturnType=" + this.messageReturnType + "]";
}