From 90adc4f53b161f7ef080b3577b647b32d6470f8b Mon Sep 17 00:00:00 2001
From: Filipe Silva <filipematossilva@gmail.com>
Date: Mon, 29 May 2023 10:33:09 +0100
Subject: [PATCH] fix: log /api/health calls (#31081)

Fix #14964
---
 src/metabase/server/middleware/log.clj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/metabase/server/middleware/log.clj b/src/metabase/server/middleware/log.clj
index f8683556e92..14782e30383 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."
-- 
GitLab