From ec17ac7fca60b87449355f8c240fc7e0512eba33 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 31 Aug 2013 23:44:05 -0700 Subject: Fixing logins and configuration --- src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/com/p4square/grow/frontend/session/SessionCheckingAuthenticator.java') 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; -- cgit v1.2.3