]> git.mxchange.org Git - fba.git/blobdiff - fba/helpers/config.py
Continued:
[fba.git] / fba / helpers / config.py
index ea78c46c71f0b00eb2d77023e2fbeea90411b3e1..b684f90418c490bd82900814831a3ed5a7d35e4e 100644 (file)
@@ -33,5 +33,5 @@ def get(key: str) -> any:
     elif not key in _config:
         raise KeyError(f"key='{key}' does not exist in _config array")
 
-    logger.debug("_config[%s][%s]='%s - EXIT!", key, type(_config[key]), _config[key])
+    logger.debug("_config[%s][%s]='%s' - EXIT!", key, type(_config[key]), _config[key] if not key.endswith("_api_key") else "***")
     return _config[key]