From 8a583bf9ca8c6cf6e013ab9105f89cef5e04fc0c Mon Sep 17 00:00:00 2001 From: Dwi Siswanto Date: Sun, 14 Dec 2025 22:41:32 +0700 Subject: [PATCH] chore(core): rm colorized template id Signed-off-by: Dwi Siswanto --- pkg/core/executors.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/core/executors.go b/pkg/core/executors.go index aeb85ddfe..22c2b090c 100644 --- a/pkg/core/executors.go +++ b/pkg/core/executors.go @@ -112,7 +112,7 @@ func (e *Engine) executeTemplateWithTargets(ctx context.Context, template *templ match, err := e.executeTemplateOnInput(ctx, template, t.value) if err != nil { - e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", e.executerOpts.Colorizer.BrightBlue(template.ID), t.value.Input, err) + e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", template.ID, t.value.Input, err) } results.CompareAndSwap(false, match) }() @@ -216,7 +216,7 @@ func (e *Engine) executeTemplatesOnTarget(ctx context.Context, alltemplates []*t match, err := e.executeTemplateOnInput(ctx, template, value) if err != nil { - e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", e.executerOpts.Colorizer.BrightBlue(template.ID), value.Input, err) + e.options.Logger.Warning().Msgf("[%s] Could not execute step on %s: %s\n", template.ID, value.Input, err) } results.CompareAndSwap(false, match) }(tpl, target, sg)