From cdb501ae260f0bb26db3238f2fb92d2122617c1b Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Tue, 16 May 2023 00:34:28 +0200 Subject: [PATCH] Improve debug strings in Config class --- novelwriter/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/novelwriter/config.py b/novelwriter/config.py index eb84443b..6d2c9fb1 100644 --- a/novelwriter/config.py +++ b/novelwriter/config.py @@ -430,10 +430,10 @@ class Config: """ logger.debug("Initialising Config ...") if isinstance(confPath, (str, Path)): - logger.info("Setting config from alternative path: %s", confPath) + logger.info("Setting alternative config path: %s", confPath) self._confPath = Path(confPath) if isinstance(dataPath, (str, Path)): - logger.info("Setting data path from alternative path: %s", dataPath) + logger.info("Setting alternative data path: %s", dataPath) self._dataPath = Path(dataPath) logger.debug("Config Path: %s", self._confPath)