fixed error logging

This commit is contained in:
Jan Prochazka
2023-01-21 18:00:59 +01:00
parent cc0f05168d
commit d4f0882054
12 changed files with 22 additions and 22 deletions

View File

@@ -8,11 +8,11 @@ function childProcessChecker() {
setInterval(() => {
try {
process.send({ msgtype: 'ping', counter: counter++ });
} catch (ex) {
} catch (err) {
// This will come once parent dies.
// One way can be to check for error code ERR_IPC_CHANNEL_CLOSED
// and call process.exit()
logger.error('parent died', ex);
logger.error({ err }, 'parent died');
process.exit(1);
}
}, 1000);