From d3d11d0ec8f2e44cc271e111a55377bdf71784be Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 12 Jan 2020 23:32:27 +0100 Subject: [PATCH] Report internal config sources --- radicale/config.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/radicale/config.py b/radicale/config.py index c187dacf..133afb2b 100644 --- a/radicale/config.py +++ b/radicale/config.py @@ -408,10 +408,8 @@ class Configuration: def log_config_sources(self): """Inspect all external config sources and write problems to logger.""" - for config, source, internal in self._configs: - if internal: - continue + for config, source, _ in self._configs: if config is self.SOURCE_MISSING: logger.info("Skipped missing %s", source) else: - logger.info("Parsed %s", source) + logger.info("Loaded %s", source)