From a3ae9ebbb3da01eefab1907e0e933138d99a523f Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Tue, 17 Jun 2025 20:36:33 +0100 Subject: [PATCH] log level updates --- .../modules/timestamping_enricher/timestamping_enricher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/auto_archiver/modules/timestamping_enricher/timestamping_enricher.py b/src/auto_archiver/modules/timestamping_enricher/timestamping_enricher.py index 412afa3..1626b71 100644 --- a/src/auto_archiver/modules/timestamping_enricher/timestamping_enricher.py +++ b/src/auto_archiver/modules/timestamping_enricher/timestamping_enricher.py @@ -58,7 +58,7 @@ class TimestampingEnricher(Enricher): ] if not len(hashes): - logger.warning(f"No hashes found in {url=}") + logger.debug(f"No hashes found in {url=}") return @@ -101,7 +101,7 @@ class TimestampingEnricher(Enricher): hashes_media.set("cryptography v", version("cryptography")) to_enrich.add_media(hashes_media, id="timestamped_hashes") to_enrich.set("timestamped", True) - logger.success(f"{len(timestamp_tokens)} timestamp tokens created for {url=}") + logger.info(f"{len(timestamp_tokens)} timestamp tokens created for {url=}") else: logger.warning(f"No successful timestamps for {url=}")