Print path of newly created config file

This commit is contained in:
jld3103 2021-10-01 12:31:39 +02:00
parent a3ab240bcc
commit 94c6829663

View file

@ -287,6 +287,7 @@ class ConfigStateHolder:
path = self.runtime['config_file']
os.makedirs(os.path.dirname(path), exist_ok=True)
dump_file(path, self.file)
logging.info(f'Created config file at {path}')
config = ConfigStateHolder(file_conf_base=CONFIG_DEFAULTS)