Add some more info to log
authorlajoie <lajoie@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Mon, 27 Oct 2008 12:39:12 +0000 (12:39 +0000)
committerlajoie <lajoie@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Mon, 27 Oct 2008 12:39:12 +0000 (12:39 +0000)
git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/branches/REL_2@2788 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

src/main/java/edu/internet2/middleware/shibboleth/idp/authn/provider/PreviousSessionLoginHandler.java

index 02cfece..655ba12 100644 (file)
@@ -108,6 +108,7 @@ public class PreviousSessionLoginHandler extends AbstractLoginHandler {
             log.error("No existing IdP session available.");
             httpRequest.setAttribute(LoginHandler.AUTHENTICATION_ERROR_KEY, "No existing IdP session available");
         }else{
+            log.error("Using existing IdP session for {}", idpSession.getPrincipalName());
             httpRequest.setAttribute(LoginHandler.PRINCIPAL_NAME_KEY, idpSession.getPrincipalName());
         }