Hi everybody!
My doubt is about the use of sentry from Php, I’m new using it from php.
The question is, how can I filter the events in Php, I followed the basic tutorial and I have something like this:
$client = new Raven_Client('DSN');
$error_handler = new Raven_ErrorHandler($client);
$error_handler->registerExceptionHandler();
$error_handler->registerErrorHandler();
$error_handler->registerShutdownFunction();
But I don’t wanna the the info/warning issues.
What can I do to discar them & track only the error/fatal issues?
Thanks in advance!