diff --git a/src/mastodon/timelines.py b/src/mastodon/timelines.py index cd2b208..9e05670 100644 --- a/src/mastodon/timelines.py +++ b/src/mastodon/timelines.py @@ -1,5 +1,6 @@ from mastodon.authorization import MastodonAuthorization from mastodon.config import MastodonConfiguration +from loguru import logger import requests @@ -22,4 +23,5 @@ class Timelines(): parameters["limit"] = limit response = requests.get(url, headers=self.auth.get_auth_headers(), params=parameters) + logger.debug("JSON: {}".format(response.raw())) return response.json()