summaryrefslogtreecommitdiff
path: root/src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java')
-rw-r--r--src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java b/src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java
index 8382aff..745484d 100644
--- a/src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java
+++ b/src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java
@@ -27,6 +27,7 @@ public class SessionCheckingAuthenticator extends Authenticator {
Session s = Sessions.getInstance().get(request);
if (s != null) {
+ LOG.debug("Found session for user " + s.getUser());
request.getClientInfo().setUser(s.getUser());
return true;