]> git.mxchange.org Git - fba.git/blobdiff - fba/helpers/config.py
Continued:
[fba.git] / fba / helpers / config.py
index 6bece6d1cf79744d582db4c0b38ed368e9873045..11ad9762825c9d6338df79ce40c853364a4fd9b5 100644 (file)
@@ -25,9 +25,11 @@ with open("config.json") as f:
     logger.debug("Loading configuration file ...")
     _config = json.loads(f.read())
     _config["max_crawl_depth"] = min(_config["max_crawl_depth"], (sys.getrecursionlimit() - 50))
+    logger.debug("LOADED!")
 
 def get(key: str) -> any:
     logger.debug("key[%s]='%s' - CALLED!", type(key), key)
+
     if not isinstance(key, str):
         raise ValueError(f"Parameter key[]='{type(key)}' is not of type 'str'")
     elif key == "":