From 45452ba8400c87b8b37051b6850b972557f52548 Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Sun, 10 Mar 2024 16:39:20 -0400 Subject: [PATCH] Remove console log on /healthz Signed-off-by: Brett Logan --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 3c66876..e010f56 100644 --- a/index.js +++ b/index.js @@ -143,7 +143,6 @@ app.get('/', (req, res) => { }) app.get('/healthz', (req, res) => { - console.log('Health check: OK') res.send('OK') })