From 0a5ae5b0b4faa9690c48f909f30c39157ef847c9 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Wed, 1 Jan 2025 17:31:16 +0100 Subject: [PATCH] extend startup logging for htpasswd --- radicale/auth/htpasswd.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/radicale/auth/htpasswd.py b/radicale/auth/htpasswd.py index 22b1b1ba..cc94a8f9 100644 --- a/radicale/auth/htpasswd.py +++ b/radicale/auth/htpasswd.py @@ -78,7 +78,9 @@ class Auth(auth.BaseAuth): def __init__(self, configuration: config.Configuration) -> None: super().__init__(configuration) self._filename = configuration.get("auth", "htpasswd_filename") + logger.info("auth htpasswd file: %r", self._filename) self._encoding = configuration.get("encoding", "stock") + logger.info("auth htpasswd file encoding: %r", self._encoding) self._htpasswd_cache = configuration.get("auth", "htpasswd_cache") logger.info("auth htpasswd cache: %s", self._htpasswd_cache) encryption: str = configuration.get("auth", "htpasswd_encryption")