I want to use the sentinel to evaluate possible errors, exceptions, etc.
I tried using KunstmaanSentryBundle, and it is great to catch all kinds of errors, such as undefined functions, etc., but I want to define my own Monologue channel with its own handler, but unfortunately I did not find the documentation about It.
config.yml will look something like this:
monolog:
handlers:
sentry:
type: stream
level: error
//Log to database parameter (raven for sentry)
Does anyone know the correct configuration?
source
share