From 44b4b4072b0dcb86a142ec8b343819e825f822b7 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 24 Oct 2025 15:59:28 +0200 Subject: [PATCH 1/2] build: Bump log normalizer to 2.0.0 Signed-off-by: Joas Schilling --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index b295b1dad9b30..069a6106ccc99 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit b295b1dad9b308faa28b6b21d49d8186856fe48b +Subproject commit 069a6106ccc99fd8a5ac1836085deeeee9447b7d From 2ec7fa88cc1e5812ec7b20a7d83194e88227b2ce Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 24 Oct 2025 16:00:28 +0200 Subject: [PATCH 2/2] fix(log): Fix call to normalize function Signed-off-by: Joas Schilling --- lib/private/Log.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Log.php b/lib/private/Log.php index 301a25d12c15f..cbdd0f767ad80 100644 --- a/lib/private/Log.php +++ b/lib/private/Log.php @@ -158,7 +158,7 @@ public function log(int $level, string $message, array $context = []): void { return; // no crash reporter, no listeners, we can stop for lower log level } - array_walk($context, [$this->normalizer, 'format']); + $context = array_map($this->normalizer->format(...), $context); $app = $context['app'] ?? 'no app in context'; $entry = $this->interpolateMessage($context, $message);