diff --git a/src/frontend/middleware.go b/src/frontend/middleware.go index 41d4f58..b8957e2 100644 --- a/src/frontend/middleware.go +++ b/src/frontend/middleware.go @@ -45,9 +45,6 @@ func (lh *logHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { "http.req.path": r.URL.Path, "http.req.method": r.Method, }) - if v, ok := r.Context().Value(ctxKeySessionID{}).(string); ok { - log = log.WithField("session_id", v) - } log.Debug("request started") defer func() { log.WithFields(logrus.Fields{