summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 00a319f..bcfca7a 100644
--- a/main.go
+++ b/main.go
@@ -35,7 +35,7 @@ type Task struct {
func (t Task) Run() {
_, err := backoff.Retry(context.Background(), func() (bool, error) { return true, createTask(t.Name) }, backoff.WithBackOff(backoff.NewExponentialBackOff()))
if err != nil {
- log.Printf("Failed to create task: %s", err)
+ log.Printf("Failed to create task '%s': %s", t.Name, err)
}
}