Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

under app/config/config_dev.yml I have:

monolog:                                                                                                              
    handlers:                                                                                                         
        main:                                                                                                         
            type: stream                                                                                              
            path: /var/log/dev.log                                                                                     
            level: debug 

and under app/config/config_prod.yml I have:

monolog:
    handlers:
        syslog:
            type: stream
            path: /var/log/prod.log
            level: error

In my controller I have

$logger = $this->get('logger');

$logger->debug("foo");

I would expect to see the debug entry while in dev and only error and above entry when in prod.

But so far it's outputting everything. How can I adjust it so that different levels exists for different environments?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.