I have a small slim 3 application, and when I throw a slim exception it just shows a general error message:
Thin application error
A web site error has occurred. Sorry for temporary inconvenience.
In slim 2, you can do something like this to enable debugging mode giving you return paths, etc .:
$app->config('debug', true);
Slim 3 doesn't seem to be the only one. Also, it seems to override my exception and error handlers.
How can I get slim to spit out errors, or at least call error handlers (which channel outputs to the kint for debugging information)
source share