From c32f3df7a967ab56c13efde503e74b6fcf611f90 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 29 Nov 2023 16:16:57 +0100 Subject: [PATCH] Continued: - also log 'path' here --- fba/http/federation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fba/http/federation.py b/fba/http/federation.py index a6af37e..136a4ea 100644 --- a/fba/http/federation.py +++ b/fba/http/federation.py @@ -75,7 +75,7 @@ def fetch_instances(domain: str, origin: str, software: str, command: str, path: raise ValueError(f"domain='{domain}' has recently been fetched but function was invoked") elif software is None and not instances.is_recent(domain, "last_nodeinfo"): try: - logger.debug("Software for domain='%s' is not set, determining ...", domain) + logger.debug("Software for domain='%s',path='%s' is not set, determining ...", domain, path) software = determine_software(domain, path) except network.exceptions as exception: logger.warning("Exception '%s' during determining software type", type(exception)) -- 2.39.5