Sfoglia il codice sorgente

extend log message found via https://github.com/Kozea/Radicale/issues/1823

Peter Bieringer 7 mesi fa
parent
commit
878c9ea193
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      radicale/app/__init__.py

+ 1 - 1
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