From ea28f5346ca118c2ea7347fceb527790a0abd8b1 Mon Sep 17 00:00:00 2001 From: Untone Date: Sun, 9 Jun 2024 09:07:48 +0300 Subject: [PATCH] auth-debug --- services/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/auth.py b/services/auth.py index 7210a626..52085154 100644 --- a/services/auth.py +++ b/services/auth.py @@ -12,6 +12,7 @@ async def request_data(gql, headers=None): if headers is None: headers = {"Content-Type": "application/json"} try: + logger.debug(AUTH_URL, gql, headers) async with httpx.AsyncClient() as client: response = await client.post(AUTH_URL, json=gql, headers=headers) if response.status_code == 200: