Skip to content

Commit

Permalink
feat: add log for new_count
Browse files Browse the repository at this point in the history
  • Loading branch information
z0z0r4 committed Dec 31, 2024
1 parent 12ba02f commit 2aa227d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sync/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 2aa227d

Please sign in to comment.