Add debug logging

master
Mark Moffat 2019-06-11 19:31:45 +09:30
parent 704adb747c
commit d18940a9dd
1 changed files with 1 additions and 0 deletions

View File

@ -652,6 +652,7 @@ exports.runIndexing = (app) => {
exports.indexCustomers(app) exports.indexCustomers(app)
]) ])
.catch((err) => { .catch((err) => {
console.info(colors.yellow('Error setting up indexes', err));
process.exit(2); process.exit(2);
}); });
}; };