FIX: infinite loop

This commit is contained in:
Juan Pablo Vial
2025-10-17 12:48:14 -03:00
parent b986e63cc0
commit 434c1c6d06

View File

@ -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;
} }