Skip to content

Commit

Permalink
Merge pull request #1484 from DuendeSoftware/anders/log-build-warning
Browse files Browse the repository at this point in the history
Fix incorrect LogWarning call
  • Loading branch information
brockallen authored Dec 11, 2023
2 parents 8a64003 + 058e8eb commit 0b404b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private string GetClientIdFromToken(string token)
}
catch (Exception e)
{
_logger.LogWarning("Could not parse client assertion", e);
_logger.LogWarning(e, "Could not parse client assertion");
return null;
}
}
Expand Down

0 comments on commit 0b404b5

Please sign in to comment.