From: Roland Häder Date: Mon, 24 Jul 2023 09:56:39 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fbbf4f02c624ce311dbdee606cca7bbae33d16d8;p=fba.git Continued: - added info messages when a website is being fetched --- 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,