Skip to content
Snippets Groups Projects
Commit c426bcb4 authored by Olav Morken's avatar Olav Morken
Browse files

SAML2:SingleLogoutService - Move debug dump of sp session further down in the code.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@125 44740490-163a-0410-bde0-09ae8108e29a
parent 0ecd7f98
No related branches found
No related tags found
No related merge requests found
...@@ -21,8 +21,6 @@ $idpentityid = $metadata->getMetaDataCurrentEntityID('saml20-idp-hosted'); ...@@ -21,8 +21,6 @@ $idpentityid = $metadata->getMetaDataCurrentEntityID('saml20-idp-hosted');
$session = SimpleSAML_Session::getInstance(); $session = SimpleSAML_Session::getInstance();
$session->dump_sp_sessions();
/* /*
* If we get an LogoutRequest then we initiate the logout process. * If we get an LogoutRequest then we initiate the logout process.
*/ */
...@@ -56,6 +54,11 @@ if (isset($_GET['SAMLRequest'])) { ...@@ -56,6 +54,11 @@ if (isset($_GET['SAMLRequest'])) {
error_log('IdP LogoutService: got LogoutResponse from ' . $loginresponse->getIssuer() . ' '); error_log('IdP LogoutService: got LogoutResponse from ' . $loginresponse->getIssuer() . ' ');
} }
/* Dump the current sessions (for debugging). */
$session->dump_sp_sessions();
/* /*
* We proceed to send logout requests to all remaining SPs. * We proceed to send logout requests to all remaining SPs.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment