You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tomcat uses info as default logging level. And in HazelcastSessionManager there are a couple of messages which should be on debug level, especially in the findSession method which is heavily used.
I propose to switch those log messages to debug level. Otherwise everyone needs to suppress them in the tomcat config. It's no good for performance to log messages on each request and several thousands of messages when doing a failover on a system with a lot of sessions, especially since the tomcat logging framework (juli) actually creates a stacktrace for each logged message (see log-method in DirectJDKLog).
The text was updated successfully, but these errors were encountered:
Tomcat uses info as default logging level. And in
HazelcastSessionManager
there are a couple of messages which should be on debug level, especially in thefindSession
method which is heavily used.I propose to switch those log messages to debug level. Otherwise everyone needs to suppress them in the tomcat config. It's no good for performance to log messages on each request and several thousands of messages when doing a failover on a system with a lot of sessions, especially since the tomcat logging framework (juli) actually creates a stacktrace for each logged message (see log-method in
DirectJDKLog
).The text was updated successfully, but these errors were encountered: