Re: Errors on filter

2016-12-15 Thread Tim Bain
It's still Log4J, if that's what you're asking. You're more likely to get help with your original question by posting specific details about the problems you're encountering than by your current approach of saying "Something's broken, did anything change in the past five years of active

Re: Errors on filter

2016-12-15 Thread ALi
has something changed in logging from 5.8 to 5.13? On Mon, Dec 12, 2016 at 4:31 PM, ALi wrote: > this is the code .as authorization plugin > > > private void validateIfCreationDateIsExpired(long now, long creationDate) > { > if (now > creationDate +

Re: Errors on filter

2016-12-12 Thread ALi
this is the code .as authorization plugin private void validateIfCreationDateIsExpired(long now, long creationDate) { if (now > creationDate + this.minutesToExpire * 6) { String creationDateAsString = DATE_FORMAT.format(new Date(creationDate)); String nowAsString =