From 140ed2da97aa9216b3f55ac2568046ae99e30dc8 Mon Sep 17 00:00:00 2001 From: Geno Date: Thu, 30 Mar 2017 14:37:04 +0200 Subject: [PATCH] Update log.go --- lib/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(), }) }