From 1fe232ba58f6317abd2846ed508abcb19526e3bb Mon Sep 17 00:00:00 2001 From: Andrei Bodrov Date: Mon, 5 May 2025 20:14:36 +0300 Subject: [PATCH] Add "task failed" message to verbose log --- task.go | 1 + 1 file changed, 1 insertion(+) diff --git a/task.go b/task.go index 0b762c6140..9ed20686f5 100644 --- a/task.go +++ b/task.go @@ -226,6 +226,7 @@ func (e *Executor) RunTask(ctx context.Context, call *Call) error { e.Logger.VerboseErrf(logger.Yellow, "task: task error ignored: %v\n", err) continue } + e.Logger.VerboseErrf(logger.Red, "task: %q failed: %v\n", call.Task, err) deferredExitCode = exitCode }