remove logging on non 202 and 200 statuses

This commit is contained in:
Izalia Mae 2024-09-15 05:35:17 -04:00
parent 7f0a1a4e08
commit e6845136eb

View file

@ -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"]