LDAP-290: LdapTemplate#authenticate failures log at debug instead of info

This commit is contained in:
Rob Winch
2014-02-10 15:56:26 -06:00
parent 17686f985f
commit 3345854deb

View File

@@ -1461,7 +1461,7 @@ public class LdapTemplate implements LdapOperations, InitializingBean {
return true;
}
catch (Exception e) {
LOG.info("Authentication failed for entry with DN '" + entryIdentification.getAbsoluteName() + "'", e);
LOG.debug("Authentication failed for entry with DN '" + entryIdentification.getAbsoluteName() + "'", e);
errorCallback.execute(e);
return false;
}