Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
Description
The following method is called each time a new user session is created, thus spamming our logs with info messages:
protected void enableSessionValidation() {
SessionValidationScheduler scheduler = getSessionValidationScheduler();
if (scheduler == null)
if (log.isInfoEnabled())
{ log.info("Enabling session validation scheduler..."); } scheduler.enableSessionValidation();
afterSessionValidationEnabled();
}
IMHO this should be a debug message
Same goes for the method validateSessions, that one is spamming our logs as well..