diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-03-10 15:04:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-10 15:04:35 +0100 |
| commit | a7e1a5c96ae636baac898689115ac7288ed2af02 (patch) | |
| tree | 0e4581457fb8d3b6cad44bb9e9122c48e37f0d3a /Emby.Server.Implementations/EntryPoints/RecordingNotifier.cs | |
| parent | 12f2baa3d812d43d055237ef72496cb77ef652ad (diff) | |
| parent | 9aa259eb95bcb77fd1c1c7c4c115cbf6dcda7286 (diff) | |
Merge pull request #2506 from mark-monteiro/inject-loggers-with-context
Inject loggers with context using ILogger<T>
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints/RecordingNotifier.cs')
| -rw-r--r-- | Emby.Server.Implementations/EntryPoints/RecordingNotifier.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/RecordingNotifier.cs b/Emby.Server.Implementations/EntryPoints/RecordingNotifier.cs index 9603d79761..eb86ea4645 100644 --- a/Emby.Server.Implementations/EntryPoints/RecordingNotifier.cs +++ b/Emby.Server.Implementations/EntryPoints/RecordingNotifier.cs @@ -20,7 +20,11 @@ namespace Emby.Server.Implementations.EntryPoints private readonly IUserManager _userManager; private readonly ILogger _logger; - public RecordingNotifier(ISessionManager sessionManager, IUserManager userManager, ILogger logger, ILiveTvManager liveTvManager) + public RecordingNotifier( + ISessionManager sessionManager, + IUserManager userManager, + ILogger<RecordingNotifier> logger, + ILiveTvManager liveTvManager) { _sessionManager = sessionManager; _userManager = userManager; |
