Issue #5268 Change WARN to DEBUG for NullSessionCache eviction setter. (#5270)

Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
Jan Bartel 2020-09-16 11:27:07 +02:00 committed by GitHub
parent 6b250a7dc2
commit bd589de512
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,7 +87,8 @@ public class NullSessionCache extends AbstractSessionCache
@Override @Override
public void setEvictionPolicy(int evictionTimeout) public void setEvictionPolicy(int evictionTimeout)
{ {
LOG.warn("Ignoring eviction setting: {}", evictionTimeout); if (LOG.isDebugEnabled())
LOG.debug("Ignoring eviction setting: {}", evictionTimeout);
} }
@Override @Override