-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More detailed error messages #273
Comments
There's no easy way to make all error messages understandable for most users. Many of the error messages are not meant to be understood by the end user because explaining many of the errors would be difficult if not impossible. They are meant to be passed on via a bug report to the developer. |
I recon couple of word hint would be helpful to us, more advanced users. Let's say instead of
expand into: The reason I am targeting more advanced users is because "normal" users will simply come to forum or discord and ask: "My fah is not working" regardless on how detailed the error message is. So if we, advanced users have some sort of hint on what the error means, we could guide others to do some troubleshooting and maybe fixing the issue |
EOF = End of File This means the connection was closed from the other end. |
See, that's totally incomprehensible, and I teach computer networking to undergraduates. It's only after you explain that that I grok that probably the socket is somewhere wrapped in a file-like interface. Even though I'm sure this is all output by some HTTPS library under the hood, appending some conjecture to the error message—say, that an underlying TCP socket call returned with '0' (graceful closure)—would go a long way. It'd just be a lookup table, basically, to append such text. Heck, maybe a RAG model could produce that speculation for a(n advanced) user, given a copy-pasted log, and thereby help produce the lookup table to add to the codes. |
Not sure if this is fahclient side or web control side, but more detailed (less cryptic) error messages would help a lot in troubleshooting.
The text was updated successfully, but these errors were encountered: