aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-16 12:41:49 -0400
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-16 12:41:49 -0400
commitbae89ee8243fea06ba1e17c1f1ed6da890e9f08c (patch)
tree22a01644778de380f4e279c628fcef28f4edadbc /MediaBrowser.Server.Implementations/Updates/InstallationManager.cs
parent110ee005178ca3ad04616bc2c7c0445582d56684 (diff)
fix duplicate connections on the dashboard
Diffstat (limited to 'MediaBrowser.Server.Implementations/Updates/InstallationManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Updates/InstallationManager.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs
index bdbf3896f..271d3d877 100644
--- a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs
+++ b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs
@@ -375,8 +375,10 @@ namespace MediaBrowser.Server.Implementations.Updates
throw;
}
- catch
+ catch (Exception ex)
{
+ _logger.ErrorException("Package installation failed", ex);
+
lock (CurrentInstallations)
{
CurrentInstallations.Remove(tuple);