From ace1d70ba87979dd3c2f497a73a4baaad821e35d Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Tue, 5 Sep 2023 16:31:33 +0200 Subject: [PATCH] Fix wrong log-level for debug output --- 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 b3625f713..e3283605a 100644 --- a/services/graph/pkg/identity/ldap.go +++ b/services/graph/pkg/identity/ldap.go @@ -922,7 +922,7 @@ func (i *LDAP) removeEntryByDNAndAttributeFromEntry(entry *ldap.Entry, dn string } currentValues := entry.GetEqualFoldAttributeValues(attribute) - i.logger.Error().Interface("members", currentValues).Msg("current values") + i.logger.Debug().Interface("members", currentValues).Msg("current values") found := false for _, currentValue := range currentValues { if currentValue == "" {