|
@@ -129,6 +129,10 @@ public class SessionRegistryImpl implements SessionRegistry, ApplicationListener
|
|
}
|
|
}
|
|
|
|
|
|
sessionsUsedByPrincipal.add(sessionId);
|
|
sessionsUsedByPrincipal.add(sessionId);
|
|
|
|
+
|
|
|
|
+ if (logger.isTraceEnabled()) {
|
|
|
|
+ logger.trace("Sessions used by '" + principal + "' : " + sessionsUsedByPrincipal);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
public void removeSessionInformation(String sessionId) {
|
|
public void removeSessionInformation(String sessionId) {
|
|
@@ -140,7 +144,7 @@ public class SessionRegistryImpl implements SessionRegistry, ApplicationListener
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
- if (logger.isDebugEnabled()) {
|
|
|
|
|
|
+ if (logger.isTraceEnabled()) {
|
|
logger.debug("Removing session " + sessionId + " from set of registered sessions");
|
|
logger.debug("Removing session " + sessionId + " from set of registered sessions");
|
|
}
|
|
}
|
|
|
|
|
|
@@ -167,5 +171,9 @@ public class SessionRegistryImpl implements SessionRegistry, ApplicationListener
|
|
principals.remove(info.getPrincipal());
|
|
principals.remove(info.getPrincipal());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ if (logger.isTraceEnabled()) {
|
|
|
|
+ logger.trace("Sessions used by '" + info.getPrincipal() + "' : " + sessionsUsedByPrincipal);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|