From 2be5393768a3d7e1f548b4ff4e95601284595894 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 5 Nov 2014 19:08:09 +0800 Subject: [PATCH] Don't print error to console in default_app --- atom/browser/default_app/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/atom/browser/default_app/main.js b/atom/browser/default_app/main.js index d42fb2edc643..8f6e38740312 100644 --- a/atom/browser/default_app/main.js +++ b/atom/browser/default_app/main.js @@ -48,7 +48,6 @@ if (option.file && !option.webdriver) { } catch(e) { if (e.code == 'MODULE_NOT_FOUND') { app.focus(); - console.error(e.stack); dialog.showErrorBox('Error opening app', 'The app provided is not a valid atom-shell app, please read the docs on how to write one:\nhttps://github.com/atom/atom-shell/tree/master/docs'); process.exit(1); } else {