From 54c14cbbae8aa2f2756331a15637f28c5d31d26e Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Mon, 9 Feb 2026 19:57:17 -0600 Subject: [PATCH] make nil payload a debug log --- router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router.go b/router.go index bc1052e..6a9693d 100644 --- a/router.go +++ b/router.go @@ -202,7 +202,7 @@ func (r *Router) HandleInput(ctx context.Context, sourceId string, payload any) } if payload == nil { - r.logger.Error("no input after processing", "route", routeIndex, "source", sourceId) + r.logger.Debug("no payload after processing, route terminated", "route", routeIndex, "source", sourceId) return }