Volodymyr Tkach 2 years ago
parent
commit
d6cfe2838f
1 changed files with 1 additions and 3 deletions
  1. 1 3
      utils/http/logger/logger.go

+ 1 - 3
utils/http/logger/logger.go

@@ -46,11 +46,9 @@ func LogRequests(handler http.Handler) http.Handler {
 			Status:         http.StatusOK,
 			Status:         http.StatusOK,
 		}
 		}
 		handler.ServeHTTP(nw, r)
 		handler.ServeHTTP(nw, r)
-		duration := time.Since(start)
-
 		log.Printf(
 		log.Printf(
 			"\"%s\" \"%s %s\" %d \"%.3f ms\"\n",
 			"\"%s\" \"%s %s\" %d \"%.3f ms\"\n",
-			ClientIP(r), r.Method, r.URL, nw.Status, duration.Seconds(),
+			ClientIP(r), r.Method, r.URL, nw.Status, time.Since(start).Seconds(),
 		)
 		)
 	})
 	})
 }
 }