diff --git a/rammerhead/src/util/addMoreErrorGuards.js b/rammerhead/src/util/addMoreErrorGuards.js index 1587c931..158e7f1c 100644 --- a/rammerhead/src/util/addMoreErrorGuards.js +++ b/rammerhead/src/util/addMoreErrorGuards.js @@ -29,9 +29,5 @@ process.on('uncaughtException', (err) => { ) { // crash avoided! console.error('Avoided crash:' + err.message); - } else { - // probably a TypeError or something important - console.error('About to throw: ' + err.message); - //throw new Error(err.message); } });