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