diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-11 20:20:18 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-11 20:20:18 -0700 |
commit | ece2f8a6406f565e3a63d2dba91a227fcea70b43 (patch) | |
tree | 44f201e461777f01ece3be6460214f0723507931 /src | |
parent | 3588b38fff5216468485d75642f91d283208c5c8 (diff) | |
download | DotNetOpenAuth-ece2f8a6406f565e3a63d2dba91a227fcea70b43.zip DotNetOpenAuth-ece2f8a6406f565e3a63d2dba91a227fcea70b43.tar.gz DotNetOpenAuth-ece2f8a6406f565e3a63d2dba91a227fcea70b43.tar.bz2 |
Added logging of incoming HTTP request URL.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/Messaging/Channel.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/Messaging/Channel.cs b/src/DotNetOpenAuth/Messaging/Channel.cs index de6b5ec..92bfd1f 100644 --- a/src/DotNetOpenAuth/Messaging/Channel.cs +++ b/src/DotNetOpenAuth/Messaging/Channel.cs @@ -358,6 +358,7 @@ namespace DotNetOpenAuth.Messaging { /// <returns>The deserialized message, if one is found. Null otherwise.</returns> public IDirectedProtocolMessage ReadFromRequest(HttpRequestInfo httpRequest) { Contract.Requires(httpRequest != null); + Logger.Channel.InfoFormat("Scanning incoming request for messages: {0}", httpRequest.UrlBeforeRewriting.AbsoluteUri); IDirectedProtocolMessage requestMessage = this.ReadFromRequestCore(httpRequest); if (requestMessage != null) { Logger.Channel.DebugFormat("Incoming request received: {0}", requestMessage.GetType().Name); |