Add fallback when logging uncaughtExceptions

This commit is contained in:
Nick O'Leary 2021-10-06 17:33:04 +01:00
parent bd142a9710
commit 273d9c76a7
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 12 additions and 4 deletions

View File

@ -455,9 +455,17 @@ httpsPromise.then(function(startupHttps) {
process.on('uncaughtException',function(err) {
util.log('[red] Uncaught Exception:');
if (err.stack) {
try {
RED.log.error(err.stack);
} catch(err2) {
util.log(err.stack);
}
} else {
try {
RED.log.error(err);
} catch(err2) {
util.log(err);
}
}
process.exit(1);
});