Skip to content

Commit 22c45f9

Browse files
authored
fix: debug log format string error (#590)
Signed-off-by: William Poussier <william.poussier@ovhcloud.com>
1 parent fa4b327 commit 22c45f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ forLoop:
582582
recapLog = append(recapLog, fmt.Sprintf("step %s = %s", stepK, stepV.State))
583583
}
584584

585-
debugLogger.Debugf(strings.Join(recapLog, ", "))
585+
debugLogger.Debug(strings.Join(recapLog, ", "))
586586

587587
bkoff := backoff.NewExponentialBackOff()
588588
bkoff.InitialInterval = time.Second

0 commit comments

Comments
 (0)