aboutsummaryrefslogtreecommitdiff
path: root/build/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/index.js')
-rw-r--r--build/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/build/index.js b/build/index.js
index 70d11d0..a799d2a 100644
--- a/build/index.js
+++ b/build/index.js
@@ -163,6 +163,8 @@ app.post('/accounts/update', async (req, res) => {
res.json({ ok: false });
}
});
+process.on('uncaughtException', err => console.error(err));
+process.on('unhandledRejection', (err, promise) => console.error(promise, err));
// only run the server if it's not doing tests
if (!globalThis.isTest)
app.listen(8080, () => console.log('App started :)'));