Add user log in GET issuer (#2244)

This commit is contained in:
Clément OUDOT 2020-06-18 18:01:33 +02:00
parent 2da914cc90
commit 0b3908e6dc

View File

@ -7,7 +7,7 @@ use Lemonldap::NG::Common::FormEncode;
use Lemonldap::NG::Portal::Main::Constants
qw(PE_OK PE_BADURL PE_GET_SERVICE_NOT_ALLOWED);
our $VERSION = '2.0.8';
our $VERSION = '2.0.9';
extends 'Lemonldap::NG::Portal::Main::Issuer';
@ -97,6 +97,9 @@ sub computeGetParams {
$value =~ s/[\r\n\t]//;
$getPrms{$param} = $value;
}
$self->userLogger->notice( 'User '
. $req->sessionInfo->{ $self->conf->{whatToTrace} }
. " is authorized to access to $vhost" );
}
else {
$self->logger->warn("IssuerGet: no configuration");