From f359bed596119f47b6e3598217cca8aa1c42b6dc Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Sat, 9 Jul 2011 19:19:57 -0500 Subject: [PATCH] SEC-1777: Corrected log in HttpSessionSecurityContextRepository to reference itself instead of HttpSessionContextIntegrationFilter --- .../web/context/HttpSessionSecurityContextRepository.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/main/java/org/springframework/security/web/context/HttpSessionSecurityContextRepository.java b/web/src/main/java/org/springframework/security/web/context/HttpSessionSecurityContextRepository.java index e0cbee43d9..ad6e8180ca 100644 --- a/web/src/main/java/org/springframework/security/web/context/HttpSessionSecurityContextRepository.java +++ b/web/src/main/java/org/springframework/security/web/context/HttpSessionSecurityContextRepository.java @@ -375,7 +375,8 @@ public class HttpSessionSecurityContextRepository implements SecurityContextRepo if (!allowSessionCreation) { if (logger.isDebugEnabled()) { logger.debug("The HttpSession is currently null, and the " - + "HttpSessionContextIntegrationFilter is prohibited from creating an HttpSession " + + HttpSessionSecurityContextRepository.class.getSimpleName() + + " is prohibited from creating an HttpSession " + "(because the allowSessionCreation property is false) - SecurityContext thus not " + "stored for next request"); }