jwkset: remove debugging printlns

This commit is contained in:
Pascal Bleser
2025-05-30 15:29:33 +02:00
parent 0945ae1d42
commit 16168b12fe

View File

@@ -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()