From 26317cadaa280cba4b63f193ffc02c2752b520ae Mon Sep 17 00:00:00 2001 From: patrickhuie19 Date: Thu, 14 Nov 2024 08:24:12 -0500 Subject: [PATCH] fixing Info --> Infof --- core/services/workflows/engine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/services/workflows/engine.go b/core/services/workflows/engine.go index e2bb571d0c0..69c36c1c174 100644 --- a/core/services/workflows/engine.go +++ b/core/services/workflows/engine.go @@ -698,7 +698,7 @@ func (e *Engine) finishExecution(ctx context.Context, cma custmsg.MessageEmitter l.Warnf("execution duration exceeded 15 minutes: %d", executionDuration) } logCustMsg(ctx, cma, fmt.Sprintf("execution duration: %d", executionDuration), l) - l.Info("execution duration: %d", executionDuration) + l.Infof("execution duration: %d", executionDuration) e.onExecutionFinished(executionID) return nil }