]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 24 Jul 2023 09:56:39 +0000 (11:56 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 24 Jul 2023 09:56:39 +0000 (11:56 +0200)
- added info messages when a website is being fetched

fba/commands.py

index 1ef5ab6ff2127db4ed4583d05cc9de2a29a7a43c..00a28fe31049cb9705e98a39386282ab55c2b4d3 100644 (file)
@@ -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,