From e32baa8d8fd2b04bbfd4f24d19088b56de48832c Mon Sep 17 00:00:00 2001 From: Untone Date: Wed, 12 Jun 2024 12:48:09 +0300 Subject: [PATCH] stat-aliased-select-fix-3 --- services/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/auth.py b/services/auth.py index 52085154..84b784e4 100644 --- a/services/auth.py +++ b/services/auth.py @@ -12,7 +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) + # logger.debug(f"{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: