Issue #10829 downgrade expired session WARN to DEBUG (#10847)

Co-authored-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Jan Bartel 2023-11-13 04:35:24 +01:00 committed by GitHub
parent ca603ba56e
commit fb84f3f836
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -415,7 +415,8 @@ public abstract class AbstractSessionManager extends ContainerLifeCycle implemen
} }
catch (Exception e) catch (Exception e)
{ {
LOG.warn("Invalidating session {} found to be expired when requested", id, e); if (LOG.isDebugEnabled())
LOG.warn("Invalidating session {} found to be expired when requested", id, e);
} }
return null; return null;