Merge pull request #103 from bcecchinato/fix-logs

Trivial logging fix in saveContext method in HttpSessionSecurityContextRepository
This commit is contained in:
Rob Winch 2015-02-25 00:02:44 -06:00
commit 62d74aef3d
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ public class HttpSessionSecurityContextRepository implements SecurityContextRepo
httpSession.setAttribute(springSecurityContextKey, context);
if (logger.isDebugEnabled()) {
logger.debug("SecurityContext stored to HttpSession: '" + context + "'");
logger.debug("SecurityContext '" + context + "' stored to HttpSession: '" + httpSession);
}
}
}