Commit 60d0115

mo khan <mo@mokhan.ca>
2022-04-22 21:02:39
remove extra logging
1 parent b5cc559
Changed files (1)
pkg/web/well_known.go
@@ -5,7 +5,6 @@ import (
 	_ "embed"
 	"encoding/json"
 	"encoding/pem"
-	"fmt"
 	"net/http"
 	"text/template"
 
@@ -20,7 +19,6 @@ var (
 )
 
 func (h *HttpContext) WellKnown(w http.ResponseWriter, r *http.Request) {
-	fmt.Println(r.URL.Path)
 	if r.URL.Path == "/.well-known/openid-configuration" {
 		w.Header().Set("Content-Type", "application/json")
 		tmpl.Execute(w, struct{ Issuer string }{Issuer: h.issuer})