From 1035f2821ff3f50a6545fd2c5e50b7e8db73baf9 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 8 Sep 2026 16:32:46 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=87(backend)=20silence=20noisy=20reque?= =?UTF-8?q?st=20summary=20info=20logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The request summary info logs were spamming the log stream, making around 46% of the total volume, without carrying any exploitable information. Silence them so the remaining logs are easier to explore and cheaper to store; roughly halves the overall log volume. --- CHANGELOG.md | 1 + src/backend/meet/settings.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 623cf972..8d4e913d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to ### Changed - 🔇(backend) silence expected 401 warnings on /me +- 🔇(backend) silence noisy request summary info logs ## [1.31.0] - 2026-09-08 diff --git a/src/backend/meet/settings.py b/src/backend/meet/settings.py index 468642f5..e6aa1ecb 100755 --- a/src/backend/meet/settings.py +++ b/src/backend/meet/settings.py @@ -1142,6 +1142,9 @@ class Base(Configuration): ), }, "loggers": { + "request.summary": { + "level": "WARNING", + }, "core": { "handlers": ["console"], "level": values.Value(