From 76922c2d46fa9072df178bfa23a5e1f3764abde9 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 18 Dec 2013 13:10:25 -0700 Subject: [PATCH] Include stack of window state parse errors in CI build output --- src/atom.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atom.coffee b/src/atom.coffee index b4f5344bf..e2d0956a0 100644 --- a/src/atom.coffee +++ b/src/atom.coffee @@ -65,7 +65,7 @@ class Atom extends Model try JSON.parse(documentStateString) if documentStateString? catch error - console.warn "Error parsing window state: #{statePath}", error.stack, error + console.warn "Error parsing window state: #{statePath} #{error.stack}", error # Private: Returns the path where the state for the current window will be # located if it exists.