From b7451caafdf79384dea21e959790198ba95a0d7a Mon Sep 17 00:00:00 2001 From: localhost Date: Mon, 17 Nov 2025 20:22:29 +0100 Subject: [PATCH] back to the basics --- src/utils/health.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/health.ts b/src/utils/health.ts index 8315845..d95d874 100644 --- a/src/utils/health.ts +++ b/src/utils/health.ts @@ -11,7 +11,7 @@ async function checkHealth() { } })) - console.log(`checked health status - ${Object.entries(healthStatus).map(h => `${h[0].split('-')[1].split('.')[0]} ${h[1]}`).join(', ')}`) + console.log(`checked health status - ${Object.entries(healthStatus).map(h => `${h[0]} ${h[1]}`).join(', ')}`) } checkHealth()