Skip to content

Commit 34e6406

Browse files
committed
Remove logs
1 parent bc27534 commit 34e6406

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/AasSecurity/AasSecurityAuthenticationHandler.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ protected override Task<AuthenticateResult> HandleAuthenticateAsync()
5252
return Task.FromResult(AuthenticateResult.Fail(new Exception($"Request cannot be authenticated.")));
5353
}
5454

55-
_logger.LogInformation($"Request is successfully authenticated.");
55+
//_logger.LogInformation($"Request is successfully authenticated.");
5656

57-
_logger.LogInformation("***************** LIST TICKET CLAIMS ********************");
57+
//_logger.LogInformation("***************** LIST TICKET CLAIMS ********************");
5858

59-
foreach (var tickeClaim in ticket.Principal.Claims)
60-
{
61-
_logger.LogInformation($"CLAIM value {tickeClaim?.Value}");
62-
_logger.LogInformation($"CLAIM issuer {tickeClaim?.Issuer}");
63-
_logger.LogInformation($"next claim");
64-
}
59+
//foreach (var tickeClaim in ticket.Principal.Claims)
60+
//{
61+
// _logger.LogInformation($"CLAIM value {tickeClaim?.Value}");
62+
// _logger.LogInformation($"CLAIM issuer {tickeClaim?.Issuer}");
63+
// _logger.LogInformation($"next claim");
64+
//}
6565

6666
return Task.FromResult(AuthenticateResult.Success(ticket));
6767

0 commit comments

Comments
 (0)