Skip to content

Commit

Permalink
Fix incorrect log
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersAbel committed Jan 29, 2021
1 parent 5cc607f commit 2099090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sustainsys.Saml2/SAML2P/Saml2Response.cs
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ private void ValidateSignature(IOptions options, IdentityProvider idp)
{
throw new Saml2ResponseFailedValidationException("The SAML Response is not signed and contains unsigned Assertions. Response cannot be trusted.");
}
options.SPOptions.Logger.WriteVerbose("Signature validation passed for Saml Response " + Id);
options.SPOptions.Logger.WriteVerbose("Signature validation passed for Saml Response " + Id.Value);
}

private readonly Uri audience;
Expand Down

0 comments on commit 2099090

Please sign in to comment.