Skip to content

Commit

Permalink
Trivial: reduce log spam. (#2256)
Browse files Browse the repository at this point in the history
Co-authored-by: ChristopherHX <christopher.homberger@web.de>
  • Loading branch information
squee1945 and ChristopherHX committed Mar 28, 2024
1 parent 3949d74 commit d9a19c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/common/executor.go
Expand Up @@ -97,7 +97,7 @@ func NewParallelExecutor(parallel int, executors ...Executor) Executor {
errs := make(chan error, len(executors))

if 1 > parallel {
log.Infof("Parallel tasks (%d) below minimum, setting to 1", parallel)
log.Debugf("Parallel tasks (%d) below minimum, setting to 1", parallel)
parallel = 1
}

Expand Down

0 comments on commit d9a19c8

Please sign in to comment.