A required bundle in one of my symfony applications causes a Deprecated notice in another bundle since a recent composer update. This of course is nothing unusual.
However, this notice is shown in the production environment (via app.php
) in the frontend. I was under the impression, that if the second parameter of the Kernel
constructor ($debug
) is false, no notice, warning or error will be shown in the frontend. They should only get logged (according to the monolog settings).
Is there any other configuration of Symfony that might cause deprecated notices to show up in the production environment in the frontend?
The used Symfony version is v2.8.3
in this case.