Symfony2 Monolog configure to use raven handler (Sentry)
问题 I want to use sentry to evaluate possible errors, exceptions, etc. I tried to use the KunstmaanSentryBundle and it's great to catch all kind of errors like undefined functions and so on, but I want to define my own Monolog channel with it's own handler, but unfortunately I haven't found documentation about it. config.yml would be something like: monolog: handlers: sentry: type: stream level: error //Log to database parameter (raven for sentry) Does anybody knows the right configuration? 回答1: