]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 29 Sep 2024 04:11:32 +0000 (06:11 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Sep 2024 04:11:32 +0000 (06:11 +0200)
- added debug lines for function invocation
- change INFO into DEBUG message
- changed type to "any" (maybe it is limitable?)

fba/http/network.py
fba/models/instances.py

index e95ef6a321ca9d09871faeff6ed161b736eaee29..ec020c36f17be9026338e3917f2dc01c7d978b5d 100644 (file)
@@ -118,6 +118,8 @@ def post_json_api(domain: str, path: str, data: str = "", headers: dict = dict()
         json_reply["status_code"]   = 999
         json_reply["error_message"] = f"exception['{type(exception)}']='{str(exception)}'"
         json_reply["exception"]     = exception
+
+        logger.debug("Invoking instances.set_last_error(%s,%s) ...", domain, exception)
         instances.set_last_error(domain, exception)
         raise exception
 
@@ -194,6 +196,8 @@ def get_json_api(domain: str, path: str, headers: dict, timeout: tuple) -> dict:
         json_reply["status_code"]   = 999
         json_reply["error_message"] = f"exception['{type(exception)}']='{str(exception)}'"
         json_reply["exception"]     = exception
+
+        logger.debug("Invoking instances.set_last_error(%s,%s) ...", domain, exception)
         instances.set_last_error(domain, exception)
         raise exception
 
@@ -379,7 +383,7 @@ def fetch_json_rows(hostname: str, path: str, headers: dict = {}, rows_key: str
     elif rows_key is not None and rows_key == "":
         raise ValueError("Parameter 'rows_key' is an empty string")
 
-    logger.info("Fetching list from hostname='%s',path='%s' ...", hostname, path)
+    logger.debug("Invoking get_json_api(%s,%s,headers()=%d) ...", hostname, path, len(headers))
     fetched = get_json_api(
         hostname,
         path,
index 5ea702fc8f7ef557764ab752ef073a0d5e0908fb..7de40c670e3af8ba2f9aebafbc5ba027b65c4ab7 100644 (file)
@@ -253,7 +253,7 @@ def set_last_nodeinfo(domain: str) -> None:
 
     logger.debug("EXIT!")
 
-def set_last_error(domain: str, error: dict) -> None:
+def set_last_error(domain: str, error: any) -> None:
     logger.debug("domain='%s',error[]='%s' - CALLED!", domain, type(error))
     domain_helper.raise_on(domain)