Skip to content

Commit

Permalink
ldap: Adjust log settings when a user is not found. (#5771)
Browse files Browse the repository at this point in the history
Fixes: #3849.
  • Loading branch information
HarshitOnGitHub authored and techknowlogick committed Jan 19, 2019
1 parent c212c98 commit 6822a89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/auth/ldap/ldap.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6822a89

Please sign in to comment.