From 1a8bd70b4641d789a519efa1828f569a1dc20e83 Mon Sep 17 00:00:00 2001 From: timothy-spencer Date: Tue, 7 May 2019 10:47:15 -0700 Subject: [PATCH] fixing code redemption error string logging --- oauthproxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauthproxy.go b/oauthproxy.go index 09d9f2a..52f7c79 100644 --- a/oauthproxy.go +++ b/oauthproxy.go @@ -751,7 +751,7 @@ func (p *OAuthProxy) OAuthCallback(rw http.ResponseWriter, req *http.Request) { session, err := p.redeemCode(req.Host, req.Form.Get("code")) if err != nil { - logger.Printf("Error redeeming code during OAuth2 callback: %s ", errorString) + logger.Printf("Error redeeming code during OAuth2 callback: %s ", err.Error()) p.ErrorPage(rw, 500, "Internal Error", "Internal Error") return }