From e6845136eb8b417517402efbe75fc68b9b32a591 Mon Sep 17 00:00:00 2001 From: Izalia Mae Date: Sun, 15 Sep 2024 05:35:17 -0400 Subject: [PATCH] remove logging on non 202 and 200 statuses --- relay/http_client.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/relay/http_client.py b/relay/http_client.py index ef25881..8188712 100644 --- a/relay/http_client.py +++ b/relay/http_client.py @@ -134,9 +134,6 @@ class HttpClient: data = await resp.text() if resp.status not in (200, 202): - logging.verbose('Received error when requesting %s: %i', url, resp.status) - logging.debug(data) - try: error = json.loads(data)["error"]