Improve log in updateSession (#1656)

This commit is contained in:
Clément OUDOT 2019-02-28 16:51:16 +01:00
parent ba9dc8863f
commit b3f917ac5a

View File

@ -469,8 +469,8 @@ sub updateSession {
## sessionInfo updated if $id defined : quite strange !! ## sessionInfo updated if $id defined : quite strange !!
## See https://gitlab.ow2.org/lemonldap-ng/lemonldap-ng/issues/430 ## See https://gitlab.ow2.org/lemonldap-ng/lemonldap-ng/issues/430
foreach ( keys %$infos ) { foreach ( keys %$infos ) {
$self->logger->debug( $self->logger->debug("Update sessionInfo $_");
"Update sessionInfo $_ with " . $infos->{$_} ); $self->_dump( $infos->{$_} );
$req->{sessionInfo}->{$_} = $self->HANDLER->data->{$_} $req->{sessionInfo}->{$_} = $self->HANDLER->data->{$_}
= $infos->{$_}; = $infos->{$_};
} }