extend startup logging for htpasswd

This commit is contained in:
Peter Bieringer 2025-01-01 17:31:16 +01:00
parent 5d48ba5d1e
commit 0a5ae5b0b4

View file

@ -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")