Issue #152 Log authentication success at INFO.

This commit is contained in:
Marvin S. Addison 2016-02-19 10:43:15 -05:00
parent 184868b296
commit 40291a4478
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ public class CasAuthenticator extends AbstractLifeCycle implements Authenticator
try {
logger.debug("Attempting to validate {}", ticket);
final Assertion assertion = ticketValidator.validate(ticket, serviceUrl(request, response));
logger.debug("Successfully authenticated {}", assertion.getPrincipal());
logger.info("Successfully authenticated {}", assertion.getPrincipal());
authentication = new CasAuthentication(this, ticket, assertion);
cacheAuthentication(request, authentication);
} catch (Exception e) {