In case of uncaught exception in Express, Express server crashes. What about catching and logging uncaught exceptions in app.js? ``` // catch global exceptions process.on('uncaughtException', function (err) { console.log('Caught exception: ', err); }); ```