1
1
mirror of https://github.com/nektos/act.git synced 2024-10-26 13:08:00 +03:00

Trivial: reduce log spam. (#2256)

Co-authored-by: ChristopherHX <christopher.homberger@web.de>
This commit is contained in:
Jason Collins 2024-03-28 16:28:48 -07:00 committed by GitHub
parent 3949d74af5
commit d9a19c8b02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
}