From 8a5e41a722b34e1d289bf33c779dbf10eb6f02cd Mon Sep 17 00:00:00 2001 From: Juan Pablo Vial Date: Tue, 22 Apr 2025 15:31:55 -0400 Subject: [PATCH] Normalizacion con profundidad --- app/common/Implement/Log/PDOFormatter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/common/Implement/Log/PDOFormatter.php b/app/common/Implement/Log/PDOFormatter.php index 7233dce..b3f9282 100644 --- a/app/common/Implement/Log/PDOFormatter.php +++ b/app/common/Implement/Log/PDOFormatter.php @@ -13,7 +13,7 @@ class PDOFormatter extends JsonFormatter public function format(LogRecord $record): string { - $normalized = $this->normalize($record); + $normalized = $this->normalize($record, $this->maxNormalizeDepth); return $normalized['message']; } }