aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2019-09-24 23:20:37 +0900
committerdkanada <dkanada@users.noreply.github.com>2019-09-24 23:59:24 +0900
commitb5b7db1f324a834cf2fce0bad4c7bb4cf7da5c29 (patch)
tree66c88221b022fbae0c215d873b76401beb8bc618
parentab7e697f309f7cc8badb76f27443656e2def2728 (diff)
add an exception to logging
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs4
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");
}
}
}