Add some debug logs (#1478)

environments/ppa-mbqj77/deployments/291
Clément OUDOT 7 years ago
parent 1791747281
commit c66009d645
  1. 6
      lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm

@ -877,7 +877,8 @@ sub extractFormInfo {
. build_urlencoded(
isPassive => $self->conf->{samlDiscoveryProtocolIsPassive}
? "true"
: "false" );
: "false"
);
}
$self->logger->debug("Redirect user to $disco_url");
@ -1470,6 +1471,9 @@ sub getIDP {
}
$self->logger->debug('No IDP found') unless ($idp);
}
else {
$self->logger->debug("IDP $idp found from idp URL Parameter");
}
# Case 6: auto select IDP if only one IDP defined
if ( scalar keys %{ $self->idpList } == 1 ) {

Loading…
Cancel
Save