我有这段代码:
$logger = $this->get('logger');
$logger->info('Test');
在开发中工作正常但在生产中被忽略。我怎样才能强制将其记录在生产中?
答案 0 :(得分:3)
默认情况下,请查看app / config / config_prod.yml上的monolog配置为操作级别:错误
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
有关完整参考资料,请参阅:http://symfony.com/doc/current/reference/configuration/monolog.html