]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 30 Sep 2024 19:23:42 +0000 (21:23 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 30 Sep 2024 19:23:42 +0000 (21:23 +0200)
- changed debug to info message as this was to quiet when for example the new
  instance isn't reachable (timeout)

fba/commands.py

index 821f9f41bb18418412ef77815a7e8fa31f215a04..dc4980af2b9a3a83d085434e551a3460ef3bb3e9 100644 (file)
@@ -436,7 +436,7 @@ def fetch_blocks(args: argparse.Namespace) -> int:
                 logger.debug("block[blocked]='%s' is accepted, not wanted here - SKIPPED!", block["blocked"])
                 continue
             elif not instances.is_registered(block["blocked"]):
-                logger.debug("Hash wasn't found, adding: block[blocked]'%s',blocker='%s'", block["blocked"], blocker)
+                logger.info("Fetching new instance block[blocked]'%s' for blocker='%s' ...", block["blocked"], blocker)
                 federation.fetch_instances(block["blocked"], blocker, None, inspect.currentframe().f_code.co_name)
 
             logger.debug("Invoking blocks.alias_block_level('%s') ... - BEFORE!", block["block_level"])