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']; } }