From 7eb800e4faaf7b7d7c2bb4ee8953f43a4655745d Mon Sep 17 00:00:00 2001 From: Jonatan Schlag Date: Wed, 5 Jul 2017 16:02:35 +0200 Subject: [PATCH] settings: remove dot from log message The dots at the end of log messages can be confusing. Especially behind variables,it is often unclear if the dot was part of the variable or not which make debugging much harder. Signed-off-by: Jonatan Schlag Signed-off-by: Michael Tremer --- src/functions/functions.settings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions/functions.settings b/src/functions/functions.settings index 0e50bf1f..c73349ae 100644 --- a/src/functions/functions.settings +++ b/src/functions/functions.settings @@ -159,7 +159,7 @@ settings_write() { return ${EXIT_ERROR} fi - log DEBUG "Writing settings file ${settings_file}." + log DEBUG "Writing settings file '${settings_file}'" mkdir -p $(dirname ${settings_file}) 2>/dev/null > ${settings_file} -- 2.47.3