diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-09-24 23:20:37 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2019-09-24 23:59:24 +0900 |
| commit | b5b7db1f324a834cf2fce0bad4c7bb4cf7da5c29 (patch) | |
| tree | 66c88221b022fbae0c215d873b76401beb8bc618 | |
| parent | ab7e697f309f7cc8badb76f27443656e2def2728 (diff) | |
add an exception to logging
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs index 11df2bab1..d60f5c055 100644 --- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs +++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs @@ -276,9 +276,9 @@ namespace Emby.Server.Implementations.HttpServer { connection.Dispose(); } - catch + catch (Exception ex) { - _logger.LogWarning("Error disposing connection"); + _logger.LogError(ex, "Error disposing connection"); } } } |
