add an exception to logging

pull/1785/head
dkanada 5 years ago
parent ab7e697f30
commit b5b7db1f32

@ -276,9 +276,9 @@ namespace Emby.Server.Implementations.HttpServer
{ {
connection.Dispose(); connection.Dispose();
} }
catch catch (Exception ex)
{ {
_logger.LogWarning("Error disposing connection"); _logger.LogError(ex, "Error disposing connection");
} }
} }
} }

Loading…
Cancel
Save