From 6abfab229a659f73d0698e1198f19e92ecc24a58 Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Tue, 20 Apr 2021 07:55:49 -0500 Subject: [PATCH] log --- server/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes.go b/server/routes.go index 13bde82..9e64e8c 100755 --- a/server/routes.go +++ b/server/routes.go @@ -154,7 +154,7 @@ func (s *Server) oauth(h http.HandlerFunc) http.HandlerFunc { if config.OAuth != "" { err := oauth2client.Authenticate(config.OAuth, r.Host, w, r) if err != nil { - log.Println("oauth failure", err) + log.Println("oauth failure", r.Host, ":", err) return } }