From 94c6829663f15c6604517c4c45d75f6b63a09e50 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Fri, 1 Oct 2021 12:31:39 +0200 Subject: [PATCH] Print path of newly created config file --- config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/config.py b/config.py index bd22a5d..39bf9a5 100644 --- a/config.py +++ b/config.py @@ -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)