#137 WebSecurityConfigurerAdapter no longer uses getClass() for logger

Previously it was difficult to change log levels due to CGLIB proxying of
the class which impacted the logger name.
This commit is contained in:
Rob Winch 2013-07-01 10:07:38 -05:00
parent 17bef05c3c
commit 70b3a330ef
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ import org.springframework.security.web.access.intercept.FilterSecurityIntercept
* @author Rob Winch
*/
public abstract class WebSecurityConfigurerAdapter implements SecurityConfigurer<Filter,WebSecurity> {
private final Log logger = LogFactory.getLog(getClass());
private final Log logger = LogFactory.getLog(WebSecurityConfigurerAdapter.class);
private ApplicationContext context;