From 5a1f6cbd0229a118f1d340441013cceae21e3f3d Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 12 May 2026 08:32:31 +0200 Subject: [PATCH] log also exception text --- radicale/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/radicale/config.py b/radicale/config.py index 5155876b..319f2478 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -934,8 +934,7 @@ class Configuration: except Exception as e: raise RuntimeError( "Invalid %s value for option %r in section %r in %s: " - "%r" % (type_.__name__, option, section, source, - raw_value)) from e + "%r (%s)" % (type_.__name__, option, section, source, raw_value, e)) from e self._configs.append((config, source, bool(privileged))) for section in new_values: self._values[section] = self._values.get(section, {})