Report handled PHP errors and exceptions to BugSnag.
In order to send handled exceptions to BugSnag, you can pass any Exception
object to the notifyException
method:
try {
// Some potentially crashy code
} catch (Exception $exception) {
$this->bugsnag->notifyException($exception);
}
To send custom PHP errors to BugSnag, you can instead use notifyError
:
$this->bugsnag->notifyError('ErrorType', 'Something bad happened');
You can send custom diagnostic data with handled exceptions by passing a function to modify the error report:
try {
// Some potentially crashy code
} catch (Exception $exception) {
$this->bugsnag->notifyException($exception, function ($report) {
$report->setSeverity('info');
$report->setMetaData([
'account' => array(
'paying' => true,
'name' => 'Acme Co'
)
]);
});
}
Or when using notifyError
:
$this->bugsnag->notifyError('ErrorType', 'Something bad happened', function ($report) {
$report->setSeverity('info');
$report->setMetaData([
'account' => array(
'paying' => true,
'name' => 'Acme Co'
)
]);
});
For the full list of report customizations available, see
the $report
object documentation.