CASC-182: Combined logging statements into one.

This commit is contained in:
Misagh Moayyed 2012-07-11 10:12:20 -07:00
parent 09ffc2c05d
commit 37b4058640
1 changed files with 1 additions and 2 deletions

View File

@ -105,9 +105,8 @@ public abstract class AbstractTicketValidationFilter extends AbstractCasFilter {
log.trace("Setting useSession parameter: " + this.useSession);
if (!this.useSession && this.redirectAfterValidation) {
log.warn("redirectAfterValidation parameter may not be true when useSession parameter is false.");
log.warn("redirectAfterValidation parameter may not be true when useSession parameter is false. Resetting it to false in order to prevent infinite redirects.");
setRedirectAfterValidation(false);
log.warn("Setting redirectAfterValidation parameter to " + this.redirectAfterValidation);
}
setTicketValidator(getTicketValidator(filterConfig));