Fix logging tags

This commit is contained in:
Tankred Hase
2016-05-28 15:37:29 +02:00
parent 0d2eba47ec
commit d4bc256548
2 changed files with 5 additions and 5 deletions

View File

@@ -56,6 +56,6 @@ process.on('SIGINT', () => {
});
process.on('uncaughtException', err => {
log.error('server', 'Uncaught exception', err);
log.error('index', 'Uncaught exception', err);
process.exit(1);
});