From d18940a9dd6ca89ff777711234615830ece3cf45 Mon Sep 17 00:00:00 2001 From: Mark Moffat Date: Tue, 11 Jun 2019 19:31:45 +0930 Subject: [PATCH] Add debug logging --- lib/common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/common.js b/lib/common.js index 41e2656..57f4949 100755 --- a/lib/common.js +++ b/lib/common.js @@ -652,6 +652,7 @@ exports.runIndexing = (app) => { exports.indexCustomers(app) ]) .catch((err) => { + console.info(colors.yellow('Error setting up indexes', err)); process.exit(2); }); };