aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Dlna/Eventing/EventManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Dlna/Eventing/EventManager.cs')
-rw-r--r--MediaBrowser.Dlna/Eventing/EventManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Dlna/Eventing/EventManager.cs b/MediaBrowser.Dlna/Eventing/EventManager.cs
index 3961c366a..9a15cfb9b 100644
--- a/MediaBrowser.Dlna/Eventing/EventManager.cs
+++ b/MediaBrowser.Dlna/Eventing/EventManager.cs
@@ -21,10 +21,10 @@ namespace MediaBrowser.Dlna.Eventing
private readonly ILogger _logger;
private readonly IHttpClient _httpClient;
- public EventManager(ILogManager logManager, IHttpClient httpClient)
+ public EventManager(ILogger logger, IHttpClient httpClient)
{
_httpClient = httpClient;
- _logger = logManager.GetLogger("DlnaEventManager");
+ _logger = logger;
}
public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, int? timeoutSeconds)