Please, how to configure a custom path for Symfony logs using monolog?
My application logs is working fine, but I cant find the log for some errors, like this:
InvalidConfigurationException
in VariableNode.php
(I can't see this log on screen but I can't find on log files)
Actually, I'm using this config:
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/app.log"
level: error
Thanks!