Skip to content

Commit

Permalink
Added template ID on HTTP request error message
Browse files Browse the repository at this point in the history
  • Loading branch information
vzamanillo committed Sep 5, 2020
1 parent 406f35b commit 10ebc31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/runner/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (r *Runner) processTemplateWithList(ctx context.Context, p progress.IProgre
}

if result.Error != nil {
gologger.Warningf("Could not execute step: %s\n", result.Error)
gologger.Warningf("[%s] Could not execute step: %s\n", r.colorizer.BrightBlue(template.ID), result.Error)
}

<-r.limiter
Expand Down

0 comments on commit 10ebc31

Please sign in to comment.