diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-01 22:54:33 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-01 22:54:33 -0400 |
| commit | c7c72dd1a89217f48cb48db93d9ee1fa5ee6171d (patch) | |
| tree | 71c47742119e3f546f2a34f01777b2288fa83979 /MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs | |
| parent | c741082dfd709e20e9b762028a684d39755ecd28 (diff) | |
web client re-org
Diffstat (limited to 'MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/EntryPoints/ExternalPortForwarding.cs | 6 |
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; |
