We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0f77e commit 24579e5Copy full SHA for 24579e5
.changeset/brave-papayas-stop.md
@@ -0,0 +1,5 @@
1
+---
2
+'@lightmill/log-server': minor
3
4
+
5
+Stop hiding error messages from client
packages/log-server/src/app.ts
@@ -170,7 +170,7 @@ export function LogServer({
170
{
171
status: 'Internal Server Error',
172
code: 'INTERNAL_SERVER',
173
- detail: mode !== 'production' ? err.message : undefined,
+ detail: err.message,
174
},
175
],
176
} satisfies components['schemas']['NonRouterErrorDocument']);
0 commit comments