mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
extend startup logging for htpasswd
This commit is contained in:
parent
5d48ba5d1e
commit
0a5ae5b0b4
1 changed files with 2 additions and 0 deletions
|
@ -78,7 +78,9 @@ class Auth(auth.BaseAuth):
|
||||||
def __init__(self, configuration: config.Configuration) -> None:
|
def __init__(self, configuration: config.Configuration) -> None:
|
||||||
super().__init__(configuration)
|
super().__init__(configuration)
|
||||||
self._filename = configuration.get("auth", "htpasswd_filename")
|
self._filename = configuration.get("auth", "htpasswd_filename")
|
||||||
|
logger.info("auth htpasswd file: %r", self._filename)
|
||||||
self._encoding = configuration.get("encoding", "stock")
|
self._encoding = configuration.get("encoding", "stock")
|
||||||
|
logger.info("auth htpasswd file encoding: %r", self._encoding)
|
||||||
self._htpasswd_cache = configuration.get("auth", "htpasswd_cache")
|
self._htpasswd_cache = configuration.get("auth", "htpasswd_cache")
|
||||||
logger.info("auth htpasswd cache: %s", self._htpasswd_cache)
|
logger.info("auth htpasswd cache: %s", self._htpasswd_cache)
|
||||||
encryption: str = configuration.get("auth", "htpasswd_encryption")
|
encryption: str = configuration.get("auth", "htpasswd_encryption")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue