diff --git a/www/saml2/sp/SingleLogoutService.php b/www/saml2/sp/SingleLogoutService.php index 44b010183253f5488c94f29d64b1493e0a154245..dc4ff722572564228e86c8d371154cf1b9ec6a57 100644 --- a/www/saml2/sp/SingleLogoutService.php +++ b/www/saml2/sp/SingleLogoutService.php @@ -107,9 +107,7 @@ if (isset($_GET['SAMLRequest'])) { SimpleSAML_Logger::stats('saml20-sp-SLO spinit ' . $requester . ' ' . $responder); $id = $logoutresponse->getInResponseTo(); - error_log('ID: ' . strlen($id) . ':' . $id); $returnTo = $session->getData('spLogoutReturnTo', $id); - error_log("returnTo: " . var_export($returnTo, TRUE)); if(empty($returnTo)) { SimpleSAML_Utilities::fatalError($session->getTrackID(), 'NORELAYSTATE'); diff --git a/www/saml2/sp/initSLO.php b/www/saml2/sp/initSLO.php index 238dd7a8eedc55d423d4557c593a44371990f23b..2c752c93e6ce81c68bba806eccf7ac99c1f69caa 100644 --- a/www/saml2/sp/initSLO.php +++ b/www/saml2/sp/initSLO.php @@ -44,7 +44,6 @@ if (isset($session) ) { /* Save the $returnTo url until the user returns from the IdP. */ $session->setData('spLogoutReturnTo', $lr->getGeneratedID(), 15*60, $returnTo); - error_log('Saved: "' . $lr->getGeneratedID() . '" => "' . $returnTo . '"'); $httpredirect = new SimpleSAML_Bindings_SAML20_HTTPRedirect($config, $metadata);