summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthHttpMethodBindingElement.cs4
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 {