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