From 42d93ae80c82f6dc23ef2e036bdb039791b92042 Mon Sep 17 00:00:00 2001 From: Mohammad Amin Date: Tue, 1 Apr 2025 13:57:52 +0330 Subject: [PATCH] feat: Added more logs! --- hivemind_etl/activities.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hivemind_etl/activities.py b/hivemind_etl/activities.py index a8edaef..c4f75b3 100644 --- a/hivemind_etl/activities.py +++ b/hivemind_etl/activities.py @@ -36,6 +36,7 @@ async def get_communities(platform_id: str | None = None) -> list[dict[str, Any] filter_platform_id=platform_id ) logger.info(f"Found {len(communities)} communities to process") + logging.info(f"communities: {communities}") return communities except Exception as e: logger.error(f"Error fetching communities: {str(e)}")