diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-02-24 08:10:13 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-02-24 08:10:13 -0800 |
commit | 7572ea5f8603ece9d45cb2df3b0d62c66bc8cb1c (patch) | |
tree | d9a68417aff6a6cf8f3b6fd9dd56b1a52a1c8398 /src | |
parent | ab25586e95cae7b825d426f2a731273eaf785e7d (diff) | |
download | DotNetOpenAuth-7572ea5f8603ece9d45cb2df3b0d62c66bc8cb1c.zip DotNetOpenAuth-7572ea5f8603ece9d45cb2df3b0d62c66bc8cb1c.tar.gz DotNetOpenAuth-7572ea5f8603ece9d45cb2df3b0d62c66bc8cb1c.tar.bz2 |
Fixed build break introduced by the last commit, which was cherry-picked from a later branch.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs index 8c3d7a2..8ed63f5 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs @@ -228,7 +228,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { // sometimes causes the CLR to throw: // "VerificationException: Operation could destabilize the runtime." // Just give up and use dumb mode in this case. - Logger.OpenId.ErrorFormat("VerificationException occurred while trying to create an association with {0}. {1}", provider.Uri, ex); + Logger.OpenId.ErrorFormat("VerificationException occurred while trying to create an association with {0}. {1}", provider.Endpoint, ex); return null; } } |