When running application with production settings and debug disabled monolog does not start. With enabled debugging it starts as usual. With development settings it starts regardless of debug options.
How to force monolog running on production settings with debugging disabled?
Dev and production configs are the same:
monolog:
handlers:
main:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: debug
firephp:
type: firephp
level: info
custom:
type: service
id: monitoring.errbit
level: critical
On development settings monolog runs perfectly, on production it does not even start.