when I start symfony server as follows:
php app/console server:run --docroot=www
every error is logged in dev.log. But I want it to be shown on the console. I think this should be possible, but I do not find it in the documentation ..
php app / console server: run -vvv it was!
You cannot do this by adding -vvv to the command.
-vvv
You need to do this by closing app/logs/dev.log with tail -f file or less +F file
app/logs/dev.log
tail -f file
less +F file