Removed classname from log message (normally output by log4j anyway)

This commit is contained in:
Luke Taylor 2008-01-27 20:44:58 +00:00
parent aeba732ba5
commit d8d657da7f

View File

@ -75,7 +75,7 @@ public abstract class AbstractPreAuthenticatedProcessingFilter extends SpringSec
Object credentials = getPreAuthenticatedCredentials(httpRequest); Object credentials = getPreAuthenticatedCredentials(httpRequest);
if (logger.isDebugEnabled()) { if (logger.isDebugEnabled()) {
logger.debug("AbstractPreAuthenticatedProcessingFilter: preAuthenticatedPrincipal=" + principal + ", trying to authenticate"); logger.debug("preAuthenticatedPrincipal = " + principal + ", trying to authenticate");
} }
try { try {