diff --git a/task.go b/task.go index 231552aa..6ad253e8 100644 --- a/task.go +++ b/task.go @@ -310,6 +310,7 @@ func (e *Executor) RunTask(ctx context.Context, call taskfile.Call) error { defer release() return e.startExecution(ctx, t, func(ctx context.Context) error { + e.Logger.VerboseErrf(logger.Magenta, `started task: '%s'`, call.Task) if err := e.runDeps(ctx, t); err != nil { return err } @@ -351,6 +352,7 @@ func (e *Executor) RunTask(ctx context.Context, call taskfile.Call) error { return &taskRunError{t.Task, err} } } + e.Logger.VerboseErrf(logger.Magenta, `finished task: '%s'`, call.Task) return nil }) }