We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 042ae84 commit cf10f0dCopy full SHA for cf10f0d
index.ts
@@ -13,6 +13,9 @@ import { logger } from "./utils.js";
13
const MetaConcord = new App();
14
(global as any).MetaConcord = MetaConcord;
15
16
-process.on("uncaughtException", err => logger("App").fatal(err));
+process.on("uncaughtException", err => {
17
+ logger("App").fatal(err);
18
+ process.exit(1);
19
+});
20
21
export default MetaConcord;
0 commit comments