dream12001 2016-12-16 11:16
浏览 92
已采纳

如何仅为在symfony中登录的用户创建自定义monolog文件

I need implement a simple log system for users. In the bundle actions of users (for example), i would like to use monolog with some samples like this.

public function indexAction(){
        $logger = $this->get('logger');
        $logger->users('User {X} is logout');
}

And it log, saves in specific file this log (users.log) for example

  • 写回答

1条回答 默认 最新

  • douzhong4222 2016-12-16 19:59
    关注

    You can achieve this with a channels.

    The custom channel could be created (in this case user_channel). The handler user_handler is created that only log records for the user_channel. In controller the specific logger for a channel is requested. Everything that is logged with this logger will go to user_channel. user_handler will put only that messages to the log file.

    # app/config/config.yml
    monolog:
        channels: ['user_channel']
        handlers:
            user_handler:
                level:    debug
                type:     stream
                path:     '%kernel.logs_dir%/user.log'
                channels: ['user_channel']
            main:
                level:    debug
                type:     stream
                path:     '%kernel.logs_dir%/log.log'
                channels: ['!user_channel'] #In case you don't want other handler to receive user_channel messages
    

    Then in controller you can directly access the log handler.

    public function indexAction(){
            $logger = $this->get('monolog.logger.user_channel');
            $logger->debug('User {X} is logout');
    }
    

    The log entity will be written to '%kernel.logs_dir%/user.log'.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Converting circular structure to JSON
  • ¥30 Hyper-v虚拟机相关问题,求解答。
  • ¥15 TSM320F2808PZA芯片 Bootloader
  • ¥45 谷歌浏览器出现开发者工具无法显示已创建的,但您可以调试已部署的代码。 状态代码 404, net::ERR HTTP RESPONSE CODE FAILURE
  • ¥15 如何解决蓝牙通话音频突发失真问题
  • ¥15 安装opengauss数据库报错
  • ¥15 【急】在线问答CNC雕刻机的电子电路与编程
  • ¥60 在mc68335芯片上移植ucos ii 的成功工程文件
  • ¥15 笔记本外接显示器正常,但是笔记本屏幕黑屏
  • ¥15 Python pandas