在Symfony 2中将调试输出打印到浏览器控制台

时间:2016-02-10 15:02:15

标签: php symfony debugging firebug firephp

您能否建议如何在Symfony 2中将任何调试数据打印到浏览器控制台?   特别是,是否可以使用Symfony VarDumper Component实现? 在Zend Framework中,您可以使用工具Zend_Log_Writer_Firebug来执行此操作,这非常有用。 Symfony在盒子里有这样的东西吗?

1 个答案:

答案 0 :(得分:5)

Symfony使用的记录器Monolog内置了对FirePHP和ChromePHP的支持。

在Symfony Standard Edition中,您可以在应用程序配置中configure monolog handlers

FirePHP和ChromePHP处理程序甚至是present in config_dev.yml, but are commented out

monolog:
    handlers:
        main:
            type: stream
            path: "%kernel.logs_dir%/%kernel.environment%.log"
            level: debug
            channels: [!event]
        console:
            type:   console
            channels: [!event, !doctrine]
        # uncomment to get logging in your browser
        # you may have to allow bigger header sizes in your Web server configuration
        #firephp:
        #    type:   firephp
        #    level:  info
        #chromephp:
        #    type:   chromephp
        #    level:  info

在浏览器中查看日志所需要做的就是取消注释所需的处理程序。

目前,VarDumper component不支持将任何内容转储到浏览器的控制台。但是,您可以在Web调试工具栏中查看转储的值(如果不使用工具栏,则可以在html中查看)。