diff options
author | David Christiansen <coding@davedoes.net> | 2015-01-04 23:33:54 +0000 |
---|---|---|
committer | David Christiansen <coding@davedoes.net> | 2015-01-04 23:33:54 +0000 |
commit | 5f8a168cc7a17fbc24442be4ae6b518d95a12647 (patch) | |
tree | 9f0efbcd13ff54446a34bd229dfd495eed882b06 /src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs | |
parent | 7574924b2b5c810b7c00328f04f506f28da3f2ec (diff) | |
download | DotNetOpenAuth-5f8a168cc7a17fbc24442be4ae6b518d95a12647.zip DotNetOpenAuth-5f8a168cc7a17fbc24442be4ae6b518d95a12647.tar.gz DotNetOpenAuth-5f8a168cc7a17fbc24442be4ae6b518d95a12647.tar.bz2 |
Closes #356, Closes #357, Closes #358
Diffstat (limited to 'src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs b/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs index 29ef8d5..3fbbd51 100644 --- a/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs +++ b/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs @@ -11,6 +11,8 @@ namespace DotNetOpenAuth.OAuth.ChannelElements { using System.Text; using System.Threading; using System.Threading.Tasks; + + using DotNetOpenAuth.Logging; using DotNetOpenAuth.Messaging; /// <summary> @@ -49,7 +51,7 @@ namespace DotNetOpenAuth.OAuth.ChannelElements { oauthMessage.HttpMethod = MessagingUtilities.GetHttpVerb(transmissionMethod); return MessageProtectionTasks.None; } catch (ArgumentException ex) { - Logger.OAuth.Error("Unrecognized HttpDeliveryMethods value.", ex); + Logger.OAuth.ErrorException("Unrecognized HttpDeliveryMethods value.", ex); return MessageProtectionTasks.Null; } } else { |