summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-02-08 18:42:50 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-02-08 18:42:50 -0800
commit8ab0e7ff3f6e1feefdc208461e9a2ed3ec3c808b (patch)
tree83b28e656085f3642a7588982b9d74a426b30379
parent408190363df33c8ef3aad43b80dc8a25878e1991 (diff)
downloadDotNetOpenAuth-8ab0e7ff3f6e1feefdc208461e9a2ed3ec3c808b.zip
DotNetOpenAuth-8ab0e7ff3f6e1feefdc208461e9a2ed3ec3c808b.tar.gz
DotNetOpenAuth-8ab0e7ff3f6e1feefdc208461e9a2ed3ec3c808b.tar.bz2
Fixed bug in logging of association creation events.
-rw-r--r--src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs
index 5281046..e9b8146 100644
--- a/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs
+++ b/src/DotNetOpenAuth/OpenId/RelyingParty/AssociationManager.cs
@@ -188,7 +188,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
}
if (!this.securitySettings.IsAssociationInPermittedRange(Protocol.Lookup(provider.ProtocolVersion), associateUnsuccessfulResponse.AssociationType)) {
- Logger.DebugFormat("Provider rejected an association request and suggested '{0}' as an association to try, which this Relying Party does not support. Giving up.");
+ Logger.DebugFormat("Provider rejected an association request and suggested '{0}' as an association to try, which this Relying Party does not support. Giving up.", associateUnsuccessfulResponse.AssociationType);
return null;
}