Custom error handling
Kuusamo\Vle\Exception\ErrorHandler::register(function($exception) {
var_dump($exception->getMessage());
});Rollbar\Rollbar::init([
'access_token' => 'your_access_token',
'environment' => 'production',
]);
Kuusamo\Vle\Exception\ErrorHandler::register(function($exception) {
Rollbar\Rollbar::report_exception($exception);
});Last updated