5

在 Symfony 命令执行期间,我想将消息记录到不同的文件中。我已经阅读了 Symfony 和 Monolog 文档,它应该像我在这里描述的那样工作。(请注意,我知道来自 'doctrine'、'event'、... 频道的消息仍将由主处理程序记录,但这对我来说并不重要)

在我的config.yml,我有这个:

monolog:
    channels: [commandline]
    handlers:
        main:
            type:  stream
            path:  "%kernel.logs_dir%/%kernel.environment%.main.log"
            level: debug
            channels: [!commandline]
        commandline:
            type:  stream
            path:  "%kernel.logs_dir%/%kernel.environment%.commandline.log"
            level: debug
            channels: commandline
        stdout:
            type:  stream
            path:  "php://stdout"
            level: debug
            channels: commandline
        mail:
            type:         stream
            action_level: alert
            handler:      buffered_mail
        buffered_mail:
            type:    buffer
            handler: swift
        swift:
            type:       swift_mailer
            from_email: some@email.com
            to_email:   some@email.com
            subject:    "Something went wrong"
            level:      alert

我期望有 2 个日志文件:dev.main.logdev.commandline.log. 但我仍然有第三个日志文件:dev.log记录所有消息。我似乎没有找到该日志处理程序的定义位置以及如何防止它记录事情......

如果有人能指出我正确的方向,那就太好了!

顺便说一句,我正在使用:

  • symfony 2.3
  • 独白捆绑 2.4

编辑

中没有monolog部分config_dev.yml

4

2 回答 2

5

monolog.handlers.main从中删除config_dev.yml

它通常包含 path: "%kernel.logs_dir%/%kernel.environment%.log"

配置_dev.yml(默认)

monolog:
    handlers:
        main:   # <- remove this handler
            type:   stream
            path:   "%kernel.logs_dir%/%kernel.environment%.log" #<- logs/dev.log
            level:  debug

main从此配置文件中删除处理程序。

于 2013-12-05T10:33:51.507 回答
2

如果有人遇到这个并且仍然对为什么会发生这种情况感兴趣,调试处理程序被注入到 \Symfony\Bundle\MonologBu​​ndle\DependencyInjection\Compiler\DebugHandlerPass::process() 方法中......

class DebugHandlerPass implements CompilerPassInterface
{
    // ...

    public function process(ContainerBuilder $container)
    {
        if (!$container->hasDefinition('profiler')) {
            return;
        }

        if (!$container->getParameter('kernel.debug')) {
            return;
        }

        $debugHandler = new Definition('%monolog.handler.debug.class%', array(Logger::DEBUG, true));
        $container->setDefinition('monolog.handler.debug', $debugHandler);

        foreach ($this->channelPass->getChannels() as $channel) {
            $container
                ->getDefinition($channel === 'app' ? 'monolog.logger' : 'monolog.logger.'.$channel)
                ->addMethodCall('pushHandler', array(new Reference('monolog.handler.debug')));
        }
    }
}

如您所见,这会将一个新的处理程序推送到每个已注册的通道,从而覆盖可能已经添加的任何其他处理程序。

于 2016-03-22T11:40:46.790 回答