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
#5270)

Signed-off-by: Jan Bartel <[email protected]>
  • Loading branch information
janbartel authored Sep 16, 2020
1 parent 6b250a7 commit bd589de
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 bd589de

Please sign in to comment.