From 14623011167047e37b4e44e09f24e5bf1f3dd791 Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Wed, 20 May 2026 09:29:05 +0200 Subject: [PATCH] incorporate requested changes Signed-off-by: Christian Richter --- services/graph/pkg/identity/ldap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/graph/pkg/identity/ldap.go b/services/graph/pkg/identity/ldap.go index aa88065b18..0cd28b23f0 100644 --- a/services/graph/pkg/identity/ldap.go +++ b/services/graph/pkg/identity/ldap.go @@ -1137,7 +1137,7 @@ func (i *LDAP) expandLDAPAttributeEntries(ctx context.Context, e *ldap.Entry, at ue, err := i.getUserByDN(entryDN, searchTerm) if err != nil { // Ignore errors when reading a specific entry fails, just log them and continue - logger.Error().Err(err).Str("entry", entryDN).Msg("error reading attribute member entry") + logger.Warn().Err(err).Str("entry", entryDN).Msg("error reading attribute member entry") continue } result = append(result, ue)