We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Getting an unexpected 404? If you write get("login") instead of get("/login"), queries to the login path will return 404...
get("login")
get("/login")
Getting a 500? It means the code inside the app failed.
I was also wondering how the use of logging might help debugging. (mw_log()).
mw_log()
The text was updated successfully, but these errors were encountered:
Related #63
Sorry, something went wrong.
Tip by @gaborcsardi : Easy to create an endpoint to get what's in locals if one needs that.
There is now this: https://webfakes.r-lib.org/articles/how-to.html#how-can-i-debug-an-app
So I am going to close this. Of course we can add more stuff to the How-to and/or also have a FAQ in the future, should there be a need..
No branches or pull requests
Maybe more gotchas than notes
Getting an unexpected 404?
If you write
get("login")
instead ofget("/login")
, queries to the login path will return 404...Getting a 500?
It means the code inside the app failed.
I was also wondering how the use of logging might help debugging. (
mw_log()
).The text was updated successfully, but these errors were encountered: