I use php built-in webserver to debug locally my websites.
php -S localhost:8080
Sometimes if something is wrong I have a generic 500 error in stdout and I don't understand where is the problem.
127.0.0.1:51936 [500]: /dashboard
Is there a method to have a more descriptive error like the error.log?
EDIT:
My error was
$this->userDisplayName()
instead of
$this->zfcUserDisplayName()
In a PHTML view in my Zend Framework 2 App
display_errorsanderror_reportingin your PHP.ini file, and you should get the errors showing up in the browser.