doufu5521 2016-02-10 15:02
浏览 180
已采纳

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

Could you suggest how to print any debug data into browser console in Symfony 2? Especially, is it possible to implement with Symfony VarDumper Component?
In Zend Framework you can use tool Zend_Log_Writer_Firebug to do so which is very helpful. Does Symfony has something like this from the box?

  • 写回答

1条回答 默认 最新

  • dongzouh51192 2016-02-10 15:36
    关注

    Monolog, the logger used by Symfony, has a built-in support for FirePHP and ChromePHP.

    In Symfony Standard Edition you can configure monolog handlers in your application configuration.

    FirePHP and ChromePHP handlers are even 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
    

    All you need to do to see your logs in the browser is to uncomment the needed handler.

    Currently, the VarDumper component doesn't support dumping anything to the browser's console. However, you can see the dumped values in the web debug toolbar (or in html if you don't use the toolbar).

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

报告相同问题?