diff --git a/internal/module/http-server.go b/internal/module/http-server.go index ba4ba13..78cfcce 100644 --- a/internal/module/http-server.go +++ b/internal/module/http-server.go @@ -51,8 +51,6 @@ func init() { router, ok := ctx.Value(route.RouterContextKey).(route.RouteIO) - fmt.Printf("%+T", ctx.Value(route.RouterContextKey)) - if !ok { return nil, errors.New("http.server unable to get router from context") } diff --git a/router.go b/router.go index ed14488..01519c4 100644 --- a/router.go +++ b/router.go @@ -181,6 +181,5 @@ func (r *Router) HandleOutput(ctx context.Context, destinationId string, payload // r.logger.Error("unable to route output", "module", moduleInstance.Id(), "error", err) } } - fmt.Println(len(outputErrors)) return outputErrors }