|
|
@@ -179,7 +179,7 @@ class RavenHandler extends AbstractProcessingHandler
|
|
|
$options['release'] = $this->release;
|
|
|
}
|
|
|
|
|
|
- if (isset($record['context']['exception']) && $record['context']['exception'] instanceof \Exception) {
|
|
|
+ if (isset($record['context']['exception']) && ($record['context']['exception'] instanceof \Exception || (PHP_VERSION_ID >= 70000 && $record['context']['exception'] instanceof \Throwable))) {
|
|
|
$options['extra']['message'] = $record['formatted'];
|
|
|
$this->ravenClient->captureException($record['context']['exception'], $options);
|
|
|
} else {
|