From 54cbdd0c74b69e44ec21ccf5498232e76e03af64 Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Fri, 7 Aug 2026 10:32:51 +0200 Subject: [PATCH] remove flask warning --- app/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/main.py b/app/main.py index 1fb1c72..acda1a2 100644 --- a/app/main.py +++ b/app/main.py @@ -111,6 +111,7 @@ def main(): log.info( "Webhook-Server startet auf Port %d (GET /webhook/update, kein Auth).", config.webhook_port ) + logging.getLogger("werkzeug").setLevel(logging.ERROR) app.run(host="0.0.0.0", port=config.webhook_port)