diff options
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs index 4f795fdd5..2ef9bed9f 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs +++ b/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); |
