From 595dca861db7a839eb98b0df28a928dc47f69bd2 Mon Sep 17 00:00:00 2001 From: Owen Cabalceta Date: Thu, 10 Nov 2022 17:34:46 -0500 Subject: [PATCH] based on pr feedback --- basculehttp/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basculehttp/log.go b/basculehttp/log.go index b923e98..f00d9ee 100644 --- a/basculehttp/log.go +++ b/basculehttp/log.go @@ -88,7 +88,7 @@ func SetLogger(logger *zap.Logger) alice.Constructor { l := logger.With( zap.Reflect("request.Headers", sanitizeHeaders(r.Header)), //lgtm [go/clear-text-logging] zap.String("request.URL", r.URL.EscapedPath()), - zap.String("request.method", r.Method), + zap.String("request.Method", r.Method), zap.String("request.address", source), zap.String("request.path", r.URL.Path), zap.String("request.query", r.URL.RawQuery),