This commit is contained in:
Josh Harvey 2016-11-19 02:13:06 +02:00
parent 0aa457680c
commit 47db8e9ead
7 changed files with 136 additions and 114 deletions

View file

@ -2,6 +2,9 @@
const app = require('../lib/app')
process.on('unhandledRejection', err => console.log(err.stack))
process.on('unhandledRejection', err => {
console.log('Unhandled rejection')
console.log(err.stack)
})
app.run()