make nil payload a debug log

This commit is contained in:
Joel Wetzell
2026-02-09 19:57:17 -06:00
parent 969ac6e04b
commit 54c14cbbae

View File

@@ -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
}