LDAP-239: Changed log message and lowered log priority.

This commit is contained in:
Mattias Hellborg Arthursson
2013-08-14 16:30:16 +02:00
parent 1cf071eb96
commit b557853664

View File

@@ -1,18 +1,17 @@
package org.springframework.ldap.control;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import javax.naming.NamingException;
import javax.naming.directory.DirContext;
import javax.naming.ldap.Control;
import javax.naming.ldap.LdapContext;
import org.springframework.ldap.UncategorizedLdapException;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
import org.springframework.util.ReflectionUtils;
import javax.naming.NamingException;
import javax.naming.directory.DirContext;
import javax.naming.ldap.Control;
import javax.naming.ldap.LdapContext;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
/**
* Convenient base class useful when implementing a standard DirContextProcessor
* which has a request control and a response control. It handles the loading of
@@ -183,7 +182,7 @@ public abstract class AbstractFallbackRequestAndResponseControlDirContextProcess
}
}
log.fatal("No matching response control found for paged results - looking for '" + responseControlClass);
log.info("No matching response control found - looking for '" + responseControlClass);
}
protected abstract void handleResponse(Object control);