Error messages #597
stephan-buckmaster
started this conversation in
General
Replies: 1 comment
-
This is a good point. I also don't have a great solution. When I encounter an error and see a stack trace, it often helps me fix it faster. Probably the best fix is to still support bubbling up more information in the event of failure, but style it so that it's not so intimidating or unreadable to a non technical user. Maybe it just pulls out the very little bit of friendly information from a stack trace and says "check the logs to see more information to diagnose this" or something like that. I'll keep this in mind and next time I encounter one of these I may just quickly restyle and submit a fix. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The app is really in good shape. One part that it struggles with is when there are errors with the upstream APIs. It places stack traces in the response, after 2 retries.
I don't think this is easy to improve, and I feel the reason is that there are too many kinds of errors.
Here is my current list:
One approach would be to make a list of common errors and add them to a list to handle appropriately.
For a non-dev user this would be quite puzzling.
Beta Was this translation helpful? Give feedback.
All reactions