Skip to content

Commit 4643dc7

Browse files
fix log message when setting maxConcurrentReconciles
1 parent 8b70c02 commit 4643dc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func main() {
163163
var maxConcurrentReconciles int
164164
if maxConcurrentReconcilesEnvValue := getIntEnv("MAX_CONCURRENT_RECONCILES"); maxConcurrentReconcilesEnvValue > 0 {
165165
maxConcurrentReconciles = maxConcurrentReconcilesEnvValue
166-
log.Info("maxConcurrentReconciles set to", maxConcurrentReconciles)
166+
log.Info(fmt.Sprintf("maxConcurrentReconciles set to %d", maxConcurrentReconciles))
167167
}
168168

169169
if enableDebugPprof, ok := os.LookupEnv("ENABLE_DEBUG_PPROF"); ok {

0 commit comments

Comments
 (0)