Update proxy/pkg/middleware/accesslog.go

Co-authored-by: David Christofas <dchristofas@owncloud.com>
This commit is contained in:
Alex Unger
2021-08-18 14:03:19 +02:00
committed by GitHub
parent 0f0d305f6d
commit 06fda516ec

View File

@@ -20,7 +20,7 @@ func AccessLog(logger log.Logger) func(http.Handler) http.Handler {
logger.Info().
Str("proto", r.Proto).
Str("request", ExtractRequestID(r.Context())).
Str("request", chimiddleware.GetReqID(r.Context())).
Str("remote-addr", r.RemoteAddr).
Str("method", r.Method).
Int("status", wrap.Status()).