I have a Symfony 5.3 application. When the container is compiled, the following file appears:
var/cache/dev/App_KernelDevDebugContainerDeprecations.log
In contains a serialized list of deprecation messages:
a:13:{i:0;a:6:{s:4:"type";i:16384;s:7:"message";s:166:"Since symfony/security-guard 5.3: ...
Is there a way to display this deprecation log in human-readable format? I could not find a bin/console
command to do that.
Also, is the output location/format of this deprecation log configured somewhere? It does not seem to follow the monolog config that applies to the rest of the project.