I want to log server crashes, but the exit hook does not work, the process exits but there is no log
process.on('exit', async () => {await sendDataToLogServer() });
I have also tried beforeExit hook but it does not work like exit hook
process.on('beforeExit', async () => {await sendDataToLogServer() });