aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-08 21:24:48 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-08 21:24:48 -0500
commit41ed3c15ffee7430b0718114bc7732f354198fb7 (patch)
tree00d426fd355a6bb0a0d1ac5276034691349b5f59 /MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
parentd7c25fa53f636d9882b6fd77bc877fc71ddd8902 (diff)
fixed service stack logging
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
index 29dce6747..5e4c6f0aa 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -63,8 +63,6 @@ namespace MediaBrowser.Server.Implementations.HttpServer
_logger = logManager.GetLogger("HttpServer");
- LogManager.LogFactory = new ServerLogFactory(logManager);
-
_containerAdapter = new ContainerAdapter(applicationHost);
for (var i = 0; i < 2; i++)
@@ -477,7 +475,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer
ServiceController = CreateServiceController();
_logger.Info("Calling ServiceStack AppHost.Init");
- Init();
+
+ base.Init();
}
/// <summary>