diff --git a/lib/log.go b/lib/log.go index 11add2b..99424eb 100644 --- a/lib/log.go +++ b/lib/log.go @@ -28,6 +28,6 @@ func LogHTTP(r *http.Request) *logger.Entry { return Log.WithFields(logger.Fields{ "remote": ip, "method": r.Method, - "path": r.URL.Path, + "url": r.URL.RequestURI(), }) }