From 44d16fcd8e267307f0f8a06b4cfaa7bb51cbb48d Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 2 Dec 2021 10:58:03 +0000 Subject: [PATCH] DEV: Print full stack trace on ember-cli bootstrap error (#15167) --- app/assets/javascripts/discourse/lib/bootstrap-json/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/discourse/lib/bootstrap-json/index.js b/app/assets/javascripts/discourse/lib/bootstrap-json/index.js index cb38fbc67c4..6cea5eeb848 100644 --- a/app/assets/javascripts/discourse/lib/bootstrap-json/index.js +++ b/app/assets/javascripts/discourse/lib/bootstrap-json/index.js @@ -321,8 +321,8 @@ to serve API requests. For example: } catch (error) { res.send(` -

Discourse Build Error

-
${error}
+

Discourse Ember CLI Proxy Error

+
${error.stack}
`); } finally {