Do not log number of WARC files found

This commit is contained in:
benoit74 2024-07-23 09:27:15 +00:00
parent 861751a7ed
commit 459a30a226
No known key found for this signature in database
GPG Key ID: B89606434FC7B530
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

@ -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)