From 57f6eae070d117af68003e4c50510c9aac3f1f29 Mon Sep 17 00:00:00 2001 From: ameersohel45 Date: Mon, 8 Dec 2025 15:36:07 +0530 Subject: [PATCH] Issue 569 - fix : Remove payload byte array from error logs --- core/module/handler/stdHandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/module/handler/stdHandler.go b/core/module/handler/stdHandler.go index 026b28f..532f028 100644 --- a/core/module/handler/stdHandler.go +++ b/core/module/handler/stdHandler.go @@ -85,7 +85,7 @@ func (h *stdHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { // Execute processing steps. for _, step := range h.steps { if err := step.Run(ctx); err != nil { - log.Errorf(ctx, err, "%T.run(%v):%v", step, ctx, err) + log.Errorf(ctx, err, "%T.run():%v", step, err) response.SendNack(ctx, w, err) return }