From 27c38082ecb0ef40aeb8f14494bf6819c46266b8 Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Wed, 16 Jun 2021 12:14:41 +0200 Subject: [PATCH] print failures --- packages/health-check/src/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/health-check/src/run.js b/packages/health-check/src/run.js index b1ccaaac..26f4c643 100644 --- a/packages/health-check/src/run.js +++ b/packages/health-check/src/run.js @@ -41,7 +41,7 @@ require("yargs/yargs")(process.argv.slice(2)).command( // exit with code 1 if any of the checks report failure if (entry.checks.some(({ up }) => !up)) { - console.log(entry.checks); + console.log(entry.checks.filter(({ up }) => !up)); process.exit(1); } }