From cd551c595f79e686be03a2af937621db5c5f5430 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Tue, 13 Aug 2024 23:42:13 +0100 Subject: [PATCH] temp log for testing --- src/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api.py b/src/api.py index fb2baa8..393b971 100644 --- a/src/api.py +++ b/src/api.py @@ -63,6 +63,8 @@ class API: dict: Dictionary containing status code, json or text. """ + log.debug("request to '%s', headers '%s', kwargs '%s'", url, self.token_headers, kwargs) # temp for testing + async with self.session.request(method, url, headers=self.token_headers, **kwargs) as response: response.raise_for_status() try: