diff --git a/sync/tasks.py b/sync/tasks.py index 41abef2..b209574 100644 --- a/sync/tasks.py +++ b/sync/tasks.py @@ -319,6 +319,7 @@ def sync_curseforge_queue(): log.info(f"Total modids: {len(modids)} to sync.") new_count = check_new_modids(modids=modids) + log.info(f"New modids count: {new_count}") if modids: curseforge_pause_event.set() @@ -365,6 +366,7 @@ def sync_modrinth_queue(): log.info(f"Total project ids: {len(project_ids)} to sync.") new_count = check_new_project_ids(project_ids=project_ids) + log.info(f"New project ids count: {new_count}") if project_ids: modrinth_pause_event.set()