Skip to content

Commit

Permalink
Issue #10829 downgrade expired session WARN to DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Nov 2, 2023
1 parent 81814dc commit db501b3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,8 @@ public ManagedSession getManagedSession(String extendedId)
}
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;
Expand Down

0 comments on commit db501b3

Please sign in to comment.