From d9a19c8b02aea94b8e3291a25f63a513128e0d62 Mon Sep 17 00:00:00 2001 From: Jason Collins Date: Thu, 28 Mar 2024 16:28:48 -0700 Subject: [PATCH] Trivial: reduce log spam. (#2256) Co-authored-by: ChristopherHX --- pkg/common/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/common/executor.go b/pkg/common/executor.go index a5eb079b..24173565 100644 --- a/pkg/common/executor.go +++ b/pkg/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 }