Browse Source

fixed http response logging

Luke Pulverenti 11 years ago
parent
commit
c07596dbb4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs

+ 2 - 2
MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs

@@ -357,11 +357,11 @@ namespace MediaBrowser.Server.Implementations.HttpServer
             {
                 try
                 {
-                    ProcessRequest(context);
-
                     var url = context.Request.Url.ToString();
                     var endPoint = context.Request.RemoteEndPoint;
 
+                    ProcessRequest(context);
+
                     var duration = DateTime.Now - date;
 
                     LogResponse(context, url, endPoint, duration);