Skip to content

Commit

Permalink
Issue #5268 Change WARN to DEBUG for NullSessionCache eviction setter.
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Bartel <[email protected]>
  • Loading branch information
janbartel committed Sep 15, 2020
1 parent 3849a91 commit 840d551
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ public Session doDelete(String id)
@Override
public void setEvictionPolicy(int evictionTimeout)
{
LOG.warn("Ignoring eviction setting: {}", evictionTimeout);
if (LOG.isDebugEnabled())
LOG.debug("Ignoring eviction setting: {}", evictionTimeout);
}

@Override
Expand Down

0 comments on commit 840d551

Please sign in to comment.