diff --git a/app/src/config.py b/app/src/config.py index 19bda17..5c30294 100644 --- a/app/src/config.py +++ b/app/src/config.py @@ -60,7 +60,10 @@ class Config(): config['inverters'] = def_config['inverters'] | usr_config['inverters'] cls.config = cls.conf_schema.validate(config) - logging.debug(f'Readed config: "{cls.config}" ') + dbg_config =cls.config + dbg_mqtt= dbg_config['mqtt'] + dbg_mqtt['passwd'] = '*******' + logging.debug(f'Readed config: "{dbg_config}" ') except Exception as error: logger.error(f'Config.read: {error}')