From 12de947f3d0dd242637462f0b3805f77429654bb Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sun, 28 Dec 2025 11:47:02 -0600 Subject: [PATCH] cleanup logging --- internal/module/http-server.go | 2 -- router.go | 1 - 2 files changed, 3 deletions(-) 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 }