Symfony Magazine Log Level / more verbose?

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 ..

+6
source share
2 answers

php app / console server: run -vvv it was!

+3
source

You cannot do this by adding -vvv to the command.

You need to do this by closing app/logs/dev.log with tail -f file or less +F file

-1
source

All Articles