From bb97135d5589f988a8f592b3fff3c718c1cffd70 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Tue, 20 Feb 2024 16:11:41 -0700 Subject: [PATCH] Removed debug print for routes --- cmd/boot-script-service/main.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cmd/boot-script-service/main.go b/cmd/boot-script-service/main.go index 1b7fe58..59abc1b 100644 --- a/cmd/boot-script-service/main.go +++ b/cmd/boot-script-service/main.go @@ -462,12 +462,6 @@ func main() { router := initHandlers() - // print all routes for debug - routes := router.Routes() - for _, route := range routes { - fmt.Printf("route: %s\n", route.Pattern) - } - // try and fetch JWKS from issuer if requireAuth { for i := uint64(0); i <= authRetryCount; i++ {