Skip to content

Commit

Permalink
fix order of log parameter according to log message
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfspiritM authored and brentschmaltz committed Apr 14, 2023
1 parent 90da399 commit 05eeeb5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -640,7 +640,7 @@ public override SecurityToken CreateToken(SecurityTokenDescriptor tokenDescripto
notBefore = now;
}

LogHelper.LogVerbose(LogMessages.IDX12721, LogHelper.MarkAsNonPII(audience ?? "null"), LogHelper.MarkAsNonPII(issuer ?? "null"));
LogHelper.LogVerbose(LogMessages.IDX12721, LogHelper.MarkAsNonPII(issuer ?? "null"), LogHelper.MarkAsNonPII(audience ?? "null"));
JwtPayload payload = new JwtPayload(issuer, audience, (subject == null ? null : OutboundClaimTypeTransform(subject.Claims)), (claimCollection == null ? null : OutboundClaimTypeTransform(claimCollection)), notBefore, expires, issuedAt);
JwtHeader header = new JwtHeader(signingCredentials, OutboundAlgorithmMap, tokenType, additionalInnerHeaderClaims);

Expand Down

0 comments on commit 05eeeb5

Please sign in to comment.