From fbbf4f02c624ce311dbdee606cca7bbae33d16d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 24 Jul 2023 11:56:39 +0200 Subject: [PATCH] Continued: - added info messages when a website is being fetched --- fba/commands.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fba/commands.py b/fba/commands.py index 1ef5ab6..00a28fe 100644 --- a/fba/commands.py +++ b/fba/commands.py @@ -1196,6 +1196,7 @@ def fetch_fedipact(args: argparse.Namespace) -> int: logger.debug("source_domain='%s' has not been recently used, marking ...", source_domain) sources.update(source_domain) + logger.info("Fetching / from source_domain='%s' ...", source_domain) response = utils.fetch_url( f"https://{source_domain}", network.web_headers, @@ -1254,6 +1255,7 @@ def fetch_joinmisskey(args: argparse.Namespace) -> int: logger.debug("source_domain='%s' has not been recently used, marking ...", source_domain) sources.update(source_domain) + logger.info("Fetching instances.json from source_domain='%s' ...", source_domain) raw = utils.fetch_url( f"https://{source_domain}/instances.json", network.web_headers, @@ -1301,6 +1303,7 @@ def fetch_joinfediverse(args: argparse.Namespace) -> int: logger.debug("source_domain='%s' has not been recently used, marking ...", source_domain) sources.update(source_domain) + logger.info("Fetching /FediBlock wiki page from source_domain='%s' ...", source_domain) raw = utils.fetch_url( f"https://{source_domain}/FediBlock", network.web_headers, -- 2.39.5