aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/ConnectionManager
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-03 23:07:10 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-03 23:07:10 +0100
commitb67e9cde8c2fa17d2bef5c7c81a6507195a7c1ff (patch)
tree0c034a55e6e606bc8f9876fc4529403385e2c709 /Emby.Dlna/ConnectionManager
parent5276c75cdeb079cd0b24c4b2dc574a584d5817b6 (diff)
Replace ILogger with ILogger<T> wherever possible
Log entries will contain additional class context when using this interface
Diffstat (limited to 'Emby.Dlna/ConnectionManager')
-rw-r--r--Emby.Dlna/ConnectionManager/ConnectionManager.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Emby.Dlna/ConnectionManager/ConnectionManager.cs b/Emby.Dlna/ConnectionManager/ConnectionManager.cs
index 365249c54a..245c03adc8 100644
--- a/Emby.Dlna/ConnectionManager/ConnectionManager.cs
+++ b/Emby.Dlna/ConnectionManager/ConnectionManager.cs
@@ -16,7 +16,11 @@ namespace Emby.Dlna.ConnectionManager
private readonly ILogger _logger;
private readonly IServerConfigurationManager _config;
- public ConnectionManager(IDlnaManager dlna, IServerConfigurationManager config, ILogger logger, IHttpClient httpClient)
+ public ConnectionManager(
+ IDlnaManager dlna,
+ IServerConfigurationManager config,
+ ILogger<ConnectionManager> logger,
+ IHttpClient httpClient)
: base(logger, httpClient)
{
_dlna = dlna;