From 6822a8993b847c794c84ab241c5e0088611bb199 Mon Sep 17 00:00:00 2001 From: Harshit Bansal Date: Sun, 20 Jan 2019 01:27:27 +0530 Subject: [PATCH] ldap: Adjust log settings when a user is not found. (#5771) Fixes: #3849. --- modules/auth/ldap/ldap.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/auth/ldap/ldap.go b/modules/auth/ldap/ldap.go index c33dbea11..010b4ea86 100644 --- a/modules/auth/ldap/ldap.go +++ b/modules/auth/ldap/ldap.go @@ -164,7 +164,7 @@ func checkAdmin(l *ldap.Conn, ls *Source, userDN string) bool { if err != nil { log.Error(4, "LDAP Admin Search failed unexpectedly! (%v)", err) } else if len(sr.Entries) < 1 { - log.Error(4, "LDAP Admin Search failed") + log.Trace("LDAP Admin Search found no matching entries.") } else { return true } @@ -259,9 +259,9 @@ func (ls *Source) SearchEntry(name, passwd string, directBind bool) *SearchResul return nil } else if len(sr.Entries) < 1 { if directBind { - log.Error(4, "User filter inhibited user login.") + log.Trace("User filter inhibited user login.") } else { - log.Error(4, "LDAP Search failed unexpectedly! (0 entries)") + log.Trace("LDAP Search found no matching entries.") } return nil