diff options
| author | Vasily <just.one.man@yandex.ru> | 2019-10-09 14:05:32 +0300 |
|---|---|---|
| committer | Vasily <just.one.man@yandex.ru> | 2019-10-09 14:05:32 +0300 |
| commit | 03450f383ffe24d742ffa68c99c70b426081db52 (patch) | |
| tree | ede9a240f4a004c3e9e57dad98d2826483b04a9c | |
| parent | 8109c7eb303a914db5f034195d12cc8f54d5a6ae (diff) | |
Fix template for logging
| -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 178b1ab82..6f436be94 100644 --- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs +++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs @@ -220,7 +220,7 @@ namespace Emby.Server.Implementations.HttpServer } else { - _logger.LogError("Error processing request: {0}", ex.Message); + _logger.LogError("Error processing request: {Message}", ex.Message); } var httpRes = httpReq.Response; |
