Skip to content

Commit 6900002

Browse files
Apply suggestions from code review
Co-authored-by: Andrey Nering <[email protected]>
1 parent 8a09d04 commit 6900002

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

task.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ func (e *Executor) RunTask(ctx context.Context, call taskfile.Call) error {
310310
defer release()
311311

312312
return e.startExecution(ctx, t, func(ctx context.Context) error {
313-
e.Logger.VerboseErrf(logger.Magenta, `started task: '%s'`, call.Task)
313+
e.Logger.VerboseErrf(logger.Magenta, `task: "%s" started`, call.Task)
314314
if err := e.runDeps(ctx, t); err != nil {
315315
return err
316316
}
@@ -352,7 +352,7 @@ func (e *Executor) RunTask(ctx context.Context, call taskfile.Call) error {
352352
return &taskRunError{t.Task, err}
353353
}
354354
}
355-
e.Logger.VerboseErrf(logger.Magenta, `finished task: '%s'`, call.Task)
355+
e.Logger.VerboseErrf(logger.Magenta, `task: "%s" finished`, call.Task)
356356
return nil
357357
})
358358
}

0 commit comments

Comments
 (0)