Skip to content

Commit

Permalink
Fix debugDump for PipelineItem
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Nov 25, 2021
1 parent bdb3b90 commit 18585d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public String debugDump(int indent) {
StringBuilder sb = new StringBuilder();
DebugUtil.debugDumpWithLabelLn(sb, "value", value, indent+1);
DebugUtil.debugDumpWithLabel(sb, "result", result, indent+1);
DebugUtil.debugDumpWithLabel(sb, "variables", result, indent+1);
DebugUtil.debugDumpWithLabel(sb, "variables", (DebugDumpable) variables, indent+1);
return sb.toString();
}

Expand Down

0 comments on commit 18585d3

Please sign in to comment.