diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:30:38 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:30:38 -0500 |
| commit | 401a6b8f4a84f378f0f6682ee7aecccc6ab30935 (patch) | |
| tree | 892ca801450a2578e286e938a5a29a997a502d9d /Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | |
| parent | 7ed6c67db0f28c5776d972668a438369c3b96aef (diff) | |
add request logging
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/HttpListenerHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs index 8a5ae2c3a..0e1f5a551 100644 --- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs +++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs @@ -518,7 +518,7 @@ namespace Emby.Server.Implementations.HttpServer return; } - var handler = HttpHandlerFactory.GetHandler(httpReq); + var handler = HttpHandlerFactory.GetHandler(httpReq, _logger); if (handler != null) { |
