aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-01 22:54:33 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-01 22:54:33 -0400
commitc7c72dd1a89217f48cb48db93d9ee1fa5ee6171d (patch)
tree71c47742119e3f546f2a34f01777b2288fa83979 /MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
parentc741082dfd709e20e9b762028a684d39755ecd28 (diff)
web client re-org
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs')
-rw-r--r--MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs b/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
index 098d1295f..04ddb4c4b 100644
--- a/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
+++ b/MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs
@@ -3,8 +3,6 @@ using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Model.Logging;
using Mono.Nat;
-using Mono.Nat.Enums;
-using Mono.Nat.EventArgs;
using System;
using System.IO;
using System.Text;
@@ -19,9 +17,9 @@ namespace MediaBrowser.Server.Implementations.EntryPoints
private bool _isStarted;
- public ExternalPortForwarding(ILogger logger, IServerApplicationHost appHost, IServerConfigurationManager config)
+ public ExternalPortForwarding(ILogManager logmanager, IServerApplicationHost appHost, IServerConfigurationManager config)
{
- _logger = logger;
+ _logger = logmanager.GetLogger("PortMapper");
_appHost = appHost;
_config = config;