diff options
author | Wu Cheng-Han | 2015-07-11 12:44:16 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2015-07-11 12:44:16 +0800 |
commit | 0292bfce5bb6f62363be8b54db064f642a899526 (patch) | |
tree | 914aa7ebe1262dffc9aaf1b4ec0ed56ec32550dc | |
parent | 556338a9c6964d110c1351a402b425c71c2571fa (diff) |
Server using logger to log uncaughtException
Diffstat (limited to '')
-rw-r--r-- | app.js | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -387,4 +387,7 @@ if (config.usessl) { server.listen(config.port, function () { logger.info('HTTP Server listening at port %d', config.port); }); -}
\ No newline at end of file +} +process.on('uncaughtException', function (err) { + logger.error(err); +});
\ No newline at end of file |