Skip to content

Commit 52c6808

Browse files
committed
polish StepExecution
Closes: gh-5025
1 parent d4a7dfd commit 52c6808

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-batch-core/src/main/java/org/springframework/batch/core/step/StepExecution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ public String toString() {
491491
*/
492492
public String getSummary() {
493493
return super.toString() + String.format(
494-
", name=%s, status=%s, exitStatus=%s, readCount=%d, filterCount=%d, writeCount=%d readSkipCount=%d, writeSkipCount=%d"
494+
", name=%s, status=%s, exitStatus=%s, readCount=%d, filterCount=%d, writeCount=%d, readSkipCount=%d, writeSkipCount=%d"
495495
+ ", processSkipCount=%d, commitCount=%d, rollbackCount=%d",
496496
stepName, status, exitStatus.getExitCode(), readCount, filterCount, writeCount, readSkipCount,
497497
writeSkipCount, processSkipCount, commitCount, rollbackCount);

0 commit comments

Comments
 (0)