File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments