1

我有这个代码:

         $logger = $this->get('logger');
         $logger->info('Test');

在开发中工作正常,但在生产中被忽略。我怎样才能强制在生产中记录这个?

4

1 回答 1

3

看看你在 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

于 2016-02-21T15:27:14.747 回答