Server using logger to log uncaughtException

This commit is contained in:
Wu Cheng-Han 2015-07-11 12:44:16 +08:00
parent 556338a9c6
commit 0292bfce5b

3
app.js
View file

@ -388,3 +388,6 @@ if (config.usessl) {
logger.info('HTTP Server listening at port %d', config.port);
});
}
process.on('uncaughtException', function (err) {
logger.error(err);
});