diff --git a/.changeset/twenty-terms-dress.md b/.changeset/twenty-terms-dress.md index e8ab7437ab..99acaf612a 100644 --- a/.changeset/twenty-terms-dress.md +++ b/.changeset/twenty-terms-dress.md @@ -3,3 +3,12 @@ --- Updated backend to write stack trace when the backend fails to start up. + +To apply this change to your Backstage installation, make the following change to `packages/backend/src/index.ts` + +```diff + cors: + origin: http://localhost:3000 +- console.error(`Backend failed to start up, ${error}`); ++ console.error('Backend failed to start up', error); +```