diff --git a/act/common/executor.go b/act/common/executor.go index a5eb079b..24173565 100644 --- a/act/common/executor.go +++ b/act/common/executor.go @@ -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 }