JSON.stringify error for debugging

This commit is contained in:
webzwo0i 2023-07-08 17:42:18 +02:00
parent b858f5dd62
commit b55a9a2411

View file

@ -111,7 +111,7 @@ exports.start = async () => {
// eslint-disable-next-line promise/no-promise-in-callback
exports.exit(err)
.catch((err) => {
logger.error('Error in process exit', err);
logger.error('Error in process exit', JSON.stringify(err));
// eslint-disable-next-line n/no-process-exit
process.exit(1);
});