FIX: infinite loop
This commit is contained in:
@ -61,7 +61,7 @@ class Exception implements ProcessorInterface
|
|||||||
'trace' => $exception->getTraceAsString(),
|
'trace' => $exception->getTraceAsString(),
|
||||||
];
|
];
|
||||||
if ($exception->getPrevious() !== null) {
|
if ($exception->getPrevious() !== null) {
|
||||||
$output['previous'] = $this->processException($exception);
|
$output['previous'] = $this->processException($exception->getPrevious());
|
||||||
}
|
}
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user