Log number of ldap users (#36)

This commit is contained in:
h44z 2021-07-20 11:01:03 +02:00 committed by GitHub
parent 1e35fb2538
commit 91b83d7882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,7 @@ func (s *Server) SyncLdapWithUserDatabase() {
logrus.Errorf("failed to fetch users from ldap: %v", err)
continue
}
logrus.Trace("found %d users in ldap", len(ldapUsers))
// Update existing LDAP users
s.updateLdapUsers(ldapUsers)