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