Browse Source

Added some extra tracing to SessionRegistryImpl.

Luke Taylor 15 years ago
parent
commit
558737363f

+ 9 - 1
core/src/main/java/org/springframework/security/core/session/SessionRegistryImpl.java

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