From ee841d14e7ee172680c59caed0d5bb14779d30d2 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Nathan Sobo Date: Tue, 28 Aug 2012 16:11:38 -0700 Subject: [PATCH] Better error reporting for failed extensions --- src/app/root-view.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/root-view.coffee b/src/app/root-view.coffee index ce99b46ed..d09abbd5b 100644 --- a/src/app/root-view.coffee +++ b/src/app/root-view.coffee @@ -209,5 +209,5 @@ class RootView extends View try require atom.configFilePath if fs.exists(atom.configFilePath) catch error - console.error "Failed to load `#{atom.configFilePath}`", error.message, error + console.error "Failed to load `#{atom.configFilePath}`", error.stack, error