cleanup logging

This commit is contained in:
Joel Wetzell
2025-12-28 11:47:02 -06:00
parent 7335ba973a
commit 12de947f3d
2 changed files with 0 additions and 3 deletions

View File

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

View File

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