remove flask warning

This commit is contained in:
2026-08-07 10:32:51 +02:00
parent 20d6d66cfe
commit 54cbdd0c74
+1
View File
@@ -111,6 +111,7 @@ def main():
log.info( log.info(
"Webhook-Server startet auf Port %d (GET /webhook/update, kein Auth).", config.webhook_port "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) app.run(host="0.0.0.0", port=config.webhook_port)