improve logging output when downloading games

This commit is contained in:
Maximilian Keßler 2023-07-07 19:44:20 +02:00
parent 176752c4e3
commit b893a65a64
Signed by: max
GPG Key ID: BCC5A619923C0BA5

View File

@ -268,15 +268,10 @@ def download_games(var_id, export_all_games: bool = False):
if num_already_downloaded_games == num_entries:
logger.info("Already downloaded all games ({:6} many) for variant {:4} [{}]".format(num_entries, var_id, name))
return
logger.info(
"Downloading remaining {} (total {}) entries for variant {} [{}]".format(
num_entries - num_already_downloaded_games, num_entries, var_id, name
)
)
with alive_progress.alive_bar(
total=num_entries - num_already_downloaded_games,
title='Downloading games for variant id {} [{}]'.format(var_id, name),
title='Downloading remaining games for variant id {:4} [{}]'.format(var_id, name),
enrich_print=False
) as bar:
for page in range(next_page, last_page + 1):