Browse Source

SEC-2013: Add space to log of AbstractAuthenticationProcessingFilter

3.0.x
Rob Winch 14 years ago
parent
commit
c9facdd993
  1. 2
      web/src/main/java/org/springframework/security/web/authentication/AbstractAuthenticationProcessingFilter.java

2
web/src/main/java/org/springframework/security/web/authentication/AbstractAuthenticationProcessingFilter.java

@ -317,7 +317,7 @@ public abstract class AbstractAuthenticationProcessingFilter extends GenericFilt
if (logger.isDebugEnabled()) { if (logger.isDebugEnabled()) {
logger.debug("Authentication request failed: " + failed.toString()); logger.debug("Authentication request failed: " + failed.toString());
logger.debug("Updated SecurityContextHolder to contain null Authentication"); logger.debug("Updated SecurityContextHolder to contain null Authentication");
logger.debug("Delegating to authentication failure handler" + failureHandler); logger.debug("Delegating to authentication failure handler " + failureHandler);
} }
rememberMeServices.loginFail(request, response); rememberMeServices.loginFail(request, response);

Loading…
Cancel
Save