Skip to content

Commit 8a583bf

Browse files
committed
chore(core): rm colorized template id
Signed-off-by: Dwi Siswanto <[email protected]>
1 parent 127e03f commit 8a583bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/core/executors.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func (e *Engine) executeTemplateWithTargets(ctx context.Context, template *templ
112112

113113
match, err := e.executeTemplateOnInput(ctx, template, t.value)
114114
if err != nil {
115-
e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", e.executerOpts.Colorizer.BrightBlue(template.ID), t.value.Input, err)
115+
e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", template.ID, t.value.Input, err)
116116
}
117117
results.CompareAndSwap(false, match)
118118
}()
@@ -216,7 +216,7 @@ func (e *Engine) executeTemplatesOnTarget(ctx context.Context, alltemplates []*t
216216

217217
match, err := e.executeTemplateOnInput(ctx, template, value)
218218
if err != nil {
219-
e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", e.executerOpts.Colorizer.BrightBlue(template.ID), value.Input, err)
219+
e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", template.ID, value.Input, err)
220220
}
221221
results.CompareAndSwap(false, match)
222222
}(tpl, target, sg)

0 commit comments

Comments
 (0)