From eb0b4686378770941bcbd87c10c9944026eeda41 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Mon, 1 Dec 2025 18:26:13 -0600 Subject: [PATCH] clean out logging --- router.go | 1 - 1 file changed, 1 deletion(-) diff --git a/router.go b/router.go index 3f5b96a..c1e0461 100644 --- a/router.go +++ b/router.go @@ -161,7 +161,6 @@ func (r *Router) HandleInput(sourceId string, payload any) []RoutingError { func (r *Router) HandleOutput(sourceId string, destinationId string, payload any) error { for _, moduleInstance := range r.ModuleInstances { if moduleInstance.Id() == destinationId { - slog.Debug("routing", "source", sourceId, "destination", destinationId, "payload", payload) return moduleInstance.Output(payload) } }