diff --git a/internal/manager/api_impl/worker_task_updates.go b/internal/manager/api_impl/worker_task_updates.go index aaf2d42e..f6f13eb9 100644 --- a/internal/manager/api_impl/worker_task_updates.go +++ b/internal/manager/api_impl/worker_task_updates.go @@ -212,7 +212,10 @@ func (f *Flamenco) maybeBlocklistWorker( threshold := f.config.Get().BlocklistThreshold if numFailures < threshold { - logger.Info().Int("numFailedTasks", numFailures).Msg("not enough failed tasks to blocklist worker") + logger.Info(). + Int("numFailedTasks", numFailures). + Int("threshold", threshold). + Msg("not enough failed tasks to blocklist worker") return false, false, nil }