From 02d89f724262fc750d6a277426a3f3f7727d5ee5 Mon Sep 17 00:00:00 2001 From: Kara Date: Tue, 12 Aug 2025 13:36:04 +0100 Subject: [PATCH] Changed health check logs to debug --- eric-oss-hello-world-python-app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eric-oss-hello-world-python-app/main.py b/eric-oss-hello-world-python-app/main.py index acd3adb..eda2a0d 100755 --- a/eric-oss-hello-world-python-app/main.py +++ b/eric-oss-hello-world-python-app/main.py @@ -62,7 +62,7 @@ def health(): indicate that the application is healthy. """ self.update_session() - self.logger.log("200 OK: Health check", Severity.INFO) + self.logger.log("200 OK: Health check", Severity.DEBUG) return "Ok\n" def update_session(self):