From 54bdd43df0ec119ca95384204f3df03d399f0136 Mon Sep 17 00:00:00 2001 From: Pascal Bleser Date: Fri, 30 May 2025 15:29:33 +0200 Subject: [PATCH] jwkset: remove debugging printlns --- vendor/github.com/MicahParks/jwkset/storage.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/vendor/github.com/MicahParks/jwkset/storage.go b/vendor/github.com/MicahParks/jwkset/storage.go index e66efe9bd9..6321e0455a 100644 --- a/vendor/github.com/MicahParks/jwkset/storage.go +++ b/vendor/github.com/MicahParks/jwkset/storage.go @@ -212,10 +212,8 @@ type httpStorage struct { // not block the return of this function. func NewStorageFromHTTP(remoteJWKSetURL string, options HTTPClientStorageOptions) (Storage, error) { if options.Client == nil { - fmt.Println("***** USING DEFAULT HTTP CLIENT *****") options.Client = http.DefaultClient } else { - fmt.Println("***** USING PROVIDED HTTP CLIENT *****") } if options.Ctx == nil { options.Ctx = context.Background()