Logger
This commit is contained in:
parent
9cbf2d3047
commit
1c53b284f2
@ -1,5 +1,6 @@
|
||||
using LdapLoginLib;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.IdentityModel.Tokens;
|
||||
using MSAdminUsuarios.Context;
|
||||
using Newtonsoft.Json.Linq;
|
||||
@ -316,6 +317,8 @@ namespace MSAdminUsuarios.Controllers
|
||||
List<PERFILPORUSUARIO> perfilesPorUsuario = (from perf in _context.PERFILESPORUSUARIOs
|
||||
where perf.TX_FKDOC_USUMS == user.TX_PKDOC_USUMS && perf.NU_FK_PFL != null && perf.BL_ESTADO_PFLXUSU == 1
|
||||
select perf).ToList();
|
||||
|
||||
_logger.LogInformation(perfilesPorUsuario.ToString());
|
||||
|
||||
List<int?> perfiles = perfilesPorUsuario.Select(p => p.NU_FK_PFL).ToList();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user