From 0b3908e6dc72f9476e1f855b162f66a9326434bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20OUDOT?= Date: Thu, 18 Jun 2020 18:01:33 +0200 Subject: [PATCH] Add user log in GET issuer (#2244) --- lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm index a3faf0e92..4f56c403c 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm @@ -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");