back to the basics

This commit is contained in:
localhost 2025-11-17 20:22:29 +01:00
parent aab9d6251f
commit b7451caafd
1 changed files with 1 additions and 1 deletions

View File

@ -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()