diff options
author | EuAndreh <eu@euandre.org> | 2024-03-15 15:41:25 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-03-15 15:41:25 -0300 |
commit | 4df5056eb1c09d437e85c96b7dc16b1af1794668 (patch) | |
tree | fcc9a49636cc9251ab86094f4b06f24cf40cf561 /src | |
parent | src/hero.mjs: Add makeUpgradeListener() (diff) | |
download | papod-4df5056eb1c09d437e85c96b7dc16b1af1794668.tar.gz papod-4df5056eb1c09d437e85c96b7dc16b1af1794668.tar.xz |
src/hero.mjs: Include stacktrace in 500 log entry
Diffstat (limited to 'src')
-rw-r--r-- | src/hero.mjs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hero.mjs b/src/hero.mjs index 4634e70..5169284 100644 --- a/src/hero.mjs +++ b/src/hero.mjs @@ -94,6 +94,7 @@ export const interceptorsFn = ({ id: req.id, type: "server-error-interceptor", message: error.message, + stacktrace: error.stack }); return { status: 500, |