diff --git a/packages/core/src/LogExceptionProcessor.php b/packages/core/src/LogExceptionProcessor.php index ae2fc5473..18ae974d5 100644 --- a/packages/core/src/LogExceptionProcessor.php +++ b/packages/core/src/LogExceptionProcessor.php @@ -15,6 +15,7 @@ public function process(Throwable $throwable): void $items = [ 'class' => $throwable::class, 'exception' => $throwable->getMessage(), + 'trace' => $throwable->getTraceAsString(), 'context' => ($throwable instanceof HasContext) ? $throwable->context() : [],