LDAP-181: Changed log level to debug for missing 'returnObjFlag'.

This commit is contained in:
Ulrik Sandberg
2012-08-27 09:09:23 +00:00
parent 7c13b616d2
commit 346bd41efa

View File

@@ -1259,7 +1259,7 @@ public class LdapTemplate implements LdapOperations, InitializingBean {
private void assureReturnObjFlagSet(SearchControls controls) {
Validate.notNull(controls);
if (!controls.getReturningObjFlag()) {
log.info("The returnObjFlag of supplied SearchControls is not set"
log.debug("The returnObjFlag of supplied SearchControls is not set"
+ " but a ContextMapper is used - setting flag to true");
controls.setReturningObjFlag(true);
}