From 9da4e8e12a048e58441bfcc7c72fb269e2e19e71 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Mon, 30 Sep 2024 21:23:42 +0200
Subject: [PATCH] Continued: - changed debug to info message as this was to
 quiet when for example the new   instance isn't reachable (timeout)

---
 fba/commands.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fba/commands.py b/fba/commands.py
index 821f9f4..dc4980a 100644
--- a/fba/commands.py
+++ b/fba/commands.py
@@ -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"])
-- 
2.39.5