From 7e8f7b87c9e955044adeab44dfaa0c2021e3a50f Mon Sep 17 00:00:00 2001 From: Dylan Date: Fri, 23 May 2025 23:58:21 +0100 Subject: [PATCH] Add logging for extractUserFeedFromId fail --- twExtract/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/twExtract/__init__.py b/twExtract/__init__.py index c59f056..1af5bf3 100644 --- a/twExtract/__init__.py +++ b/twExtract/__init__.py @@ -553,6 +553,7 @@ def extractUserFeedFromId(userId,workaroundTokens): tweets.append(tweet) return tweets except Exception as e: + print(f"Exception in extractUserFeedFromId: {str(e)}") continue raise TwExtractError(400, "Extract error")