diff --git a/cmd/http-gw/app.go b/cmd/http-gw/app.go index 4a83caf..832715f 100644 --- a/cmd/http-gw/app.go +++ b/cmd/http-gw/app.go @@ -863,8 +863,7 @@ func (a *app) logger(h fasthttp.RequestHandler) fasthttp.RequestHandler { log.Info(logs.Request, zap.String("remote", req.RemoteAddr().String()), zap.ByteString("method", req.Method()), - zap.ByteString("path", req.Path()), - zap.ByteString("query", req.QueryArgs().QueryString()), + zap.ByteString("uri", req.RequestURI()), logs.TagField(logs.TagDatapath)) h(req) }