From 5c0765c30e111ed28b275e2575280ce4d399a8e2 Mon Sep 17 00:00:00 2001 From: rr- Date: Sat, 7 Jan 2017 16:52:57 +0100 Subject: [PATCH] client/build: remove extra printer It kept hanging node. Fuck. --- client/build.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/client/build.js b/client/build.js index 25fe512..a803acb 100644 --- a/client/build.js +++ b/client/build.js @@ -213,13 +213,6 @@ function bundleBinaryAssets() { }); } -process.on('uncaughtException', (error) => { - const stack = error.stack; - delete error.stack; - console.log(error); - console.log(stack); -}); - const config = getConfig(); bundleConfig(config); bundleBinaryAssets();