diff --git a/src/metabase/server/middleware/log.clj b/src/metabase/server/middleware/log.clj
index f8683556e92b3c4413dc08a2c84bf4b79b113f1f..14782e3038381421a1b3b3fe7bb58e1fba6fe1c9 100644
--- a/src/metabase/server/middleware/log.clj
+++ b/src/metabase/server/middleware/log.clj
@@ -194,7 +194,7 @@
   ;; don't log calls to /health or /util/logs because they clutter up the logs (especially the window in admin) with
   ;; useless lines
   (and (request.u/api-call? request)
-       (not (#{"/api/health" "/api/util/logs"} uri))))
+       (not (#{"/api/util/logs"} uri))))
 
 (defn log-api-call
   "Logs info about request such as status code, number of DB calls, and time taken to complete."