From 807b8455936852bf1aa3bd5318b1be32f32ed703 Mon Sep 17 00:00:00 2001 From: Brandon Squizzato Date: Wed, 5 Jan 2022 18:48:41 -0500 Subject: [PATCH] Tweak log msg --- bonfire/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonfire/config.py b/bonfire/config.py index 0685c689..3c4a1eb1 100644 --- a/bonfire/config.py +++ b/bonfire/config.py @@ -84,7 +84,7 @@ def load_config(config_path=None): log.info("default config not found, creating") write_default_config() - log.info("using local config file: %s", str(config_path.absolute())) + log.info("reading config from: %s", str(config_path.absolute())) local_config_data = load_file(config_path) return local_config_data