我已经阅读了一些文档here,但仍然不清楚如何编写和使用自定义的Monolog处理程序和通道。让我解释一下我想要实现的目标。我有一个自定义函数,我希望将该日志记录到名为custom.log的文件中。我已通过在config.yml文件中进行设置来启用Doctrine登录到另一个文件:

monolog:
    handlers:
        #Logs Doctrine to a different channel
        doctrine:
            level:    debug
            type:     stream
            path:     "%kernel.logs_dir%/doctrine.log"
            channels: [doctrine]


如何为custom.log实现相同的目标?

最佳答案

你可以这样尝试

monolog:
    channels: ["testchannel"]
    handlers:
        test:
            # log all messages (since debug is the lowest level)
            level:    debug
            type:     stream
            path:     "%kernel.logs_dir%/testchannel.log"
            channels: ["testchannel"]


在控制器中,您可以获取记录器并执行您的操作;

class DefaultController extends Controller
{
    public function indexAction()
    {

       $logger = $this->get('monolog.logger.testchannel');
       $logger->info("This one goes to test channel!!");
       return $this->render('AcmeBundle:Default:index.html.twig');
    }
}


您也可以通过运行命令php app/console container:debug monolog来检查哪些独白处理程序和记录器已注册。

10-07 16:05