🔧(backend) configure request.summary logger

The request.summary logger is used by dockerflow. The INFO level is
always empty and is used everytime the liveness or readiness endpoint
are fetch.
This commit is contained in:
Manuel Raynaud
2026-09-09 14:46:19 +00:00
committed by GitHub
parent bcc1eb9faf
commit 673a670dd9
2 changed files with 11 additions and 2 deletions
+7
View File
@@ -1034,6 +1034,13 @@ class Base(Configuration):
),
"propagate": True,
},
"request.summary": {
"level": values.Value(
"WARNING",
environ_name="LOGGING_LEVEL_REQUEST_SUMMARY",
environ_prefix=None,
)
},
},
}