From 878c9ea193a9b03e942606ba79c852143db85886 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Mon, 21 Jul 2025 19:38:15 +0200 Subject: [PATCH] extend log message found via https://github.com/Kozea/Radicale/issues/1823 --- radicale/app/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/app/__init__.py b/radicale/app/__init__.py index 37a4edd4..b69950b9 100644 --- a/radicale/app/__init__.py +++ b/radicale/app/__init__.py @@ -291,7 +291,7 @@ class Application(ApplicationPartDelete, ApplicationPartHead, (user, info) = self._auth.login(login, password) or ("", "") if login else ("", "") if self.configuration.get("auth", "type") == "ldap": try: - logger.debug("Groups %r", ",".join(self._auth._ldap_groups)) + logger.debug("Groups received from LDAP: %r", ",".join(self._auth._ldap_groups)) self._rights._user_groups = self._auth._ldap_groups except AttributeError: pass