From d8a79b930b33bf46a070d13e16d40390977e3c35 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Thu, 2 Feb 2023 11:55:22 +0000 Subject: [PATCH] imrpove logs --- src/auto_archiver/core/orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto_archiver/core/orchestrator.py b/src/auto_archiver/core/orchestrator.py index 3e14498..a7ed8bb 100644 --- a/src/auto_archiver/core/orchestrator.py +++ b/src/auto_archiver/core/orchestrator.py @@ -85,7 +85,7 @@ class ArchivingOrchestrator: # 3 - call archivers until one succeeds for a in self.archivers: - logger.info(f"Trying archiver {a.name}") + logger.info(f"Trying archiver {a.name} for {url}") try: # Q: should this be refactored so it's just a.download(result)? result.merge(a.download(result))