From b3df75cb3a0c8f4546423db743837d1bec989ed0 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 30 Jul 2023 19:39:44 +0200 Subject: [PATCH] remove debug --- custom_components/auth_header/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/custom_components/auth_header/__init__.py b/custom_components/auth_header/__init__.py index 8e83d30..d73b5dd 100644 --- a/custom_components/auth_header/__init__.py +++ b/custom_components/auth_header/__init__.py @@ -108,7 +108,6 @@ def __init__(self, flow_mgr, store_result, debug=False) -> None: @log_invalid_auth async def post(self, request: Request, data: dict[str, Any]) -> Response: """Create a new login flow.""" - _LOGGER.debug("post") client_id: str = data["client_id"] redirect_uri: str = data["redirect_uri"]