From 434c1c6d06aeca44438c8f93590ea36e598da4bb Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Fri, 17 Oct 2025 12:48:14 -0300 Subject: [PATCH] FIX: infinite loop --- app/common/Implement/Log/Processor/Exception.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/Implement/Log/Processor/Exception.php b/app/common/Implement/Log/Processor/Exception.php index d02431d..22507b9 100644 --- a/app/common/Implement/Log/Processor/Exception.php +++ b/app/common/Implement/Log/Processor/Exception.php @@ -61,7 +61,7 @@ class Exception implements ProcessorInterface 'trace' => $exception->getTraceAsString(), ]; if ($exception->getPrevious() !== null) { - $output['previous'] = $this->processException($exception); + $output['previous'] = $this->processException($exception->getPrevious()); } return $output; }