diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bb1dbc..682d7aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix README imprecisions + add back warc2zim availability in docker image (#314) - Enhance integration test to assert final content of the ZIM (#287) - Stop fetching and passing browsertrix crawler version as scraperSuffix to warc2zim (#354) +- Do not log number of WARC files found (#357) ## [2.0.6] - 2024-08-02 diff --git a/src/zimit/zimit.py b/src/zimit/zimit.py index 48629dd..f84fbda 100755 --- a/src/zimit/zimit.py +++ b/src/zimit/zimit.py @@ -527,8 +527,6 @@ def run(raw_args): logger.info(f"Processing WARC files in {warc_directory}") warc2zim_args.append(str(warc_directory)) - num_files = sum(1 for _ in warc_directory.iterdir()) - logger.info(f"{num_files} WARC files found") logger.info(f"Calling warc2zim with these args: {warc2zim_args}") return warc2zim(warc2zim_args)