duan198727 2013-06-06 13:21
浏览 34
已采纳

Symfony2 - Monolog - 升级或降低自定义记录器

Using Symfon2 and its Monolog framework to for logging, I am having some trouble.

On the one hand, I have a service configured with my own logger. It is working properly and I get to "info" and "err" messages without problems.

services:
  my_logger:
    class: Monolog\Logger
    arguments: [my_info]
    calls:
        - [pushHandler, [@my_log_handler]]

  my_log_handler:
    class: Monolog\Handler\StreamHandler
    arguments: [%kernel.root_dir%/logs/my_info.log, 100]

Using the following in the controller causes proper messages to be written $this->get('my_logger')->info('info message'); $this->get('my_logger')->err('error message');

Here comes my question

Once I have placed planty of those ->err and ->info logging messages, how I tell the configuration to just write those written through the err method?

At the beginning may be I need many information, and for that reason I would write many info messages. But in a while, I may prefer to level up the logging messages through setting the action level to warning or error, avoiding the info logs to be written.

Any idea?

  • 写回答

1条回答 默认 最新

  • douji1999 2013-06-06 15:16
    关注

    You just need to tweak the level at which your handler is listening. In this case it means changing the 100 to something higher like 400 for errors. So that gives you:

      my_log_handler:
        class: Monolog\Handler\StreamHandler
        arguments: [%kernel.root_dir%/logs/my_info.log, 400]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部