mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-03 12:52:56 +01:00
Replace ILogger with ILogger<T> wherever possible
Log entries will contain additional class context when using this interface
This commit is contained in:
@@ -37,7 +37,14 @@ namespace MediaBrowser.Providers.Tmdb.BoxSets
|
||||
private readonly IHttpClient _httpClient;
|
||||
private readonly ILibraryManager _libraryManager;
|
||||
|
||||
public TmdbBoxSetProvider(ILogger logger, IJsonSerializer json, IServerConfigurationManager config, IFileSystem fileSystem, ILocalizationManager localization, IHttpClient httpClient, ILibraryManager libraryManager)
|
||||
public TmdbBoxSetProvider(
|
||||
ILogger<TmdbBoxSetProvider> logger,
|
||||
IJsonSerializer json,
|
||||
IServerConfigurationManager config,
|
||||
IFileSystem fileSystem,
|
||||
ILocalizationManager localization,
|
||||
IHttpClient httpClient,
|
||||
ILibraryManager libraryManager)
|
||||
{
|
||||
_logger = logger;
|
||||
_json = json;
|
||||
|
||||
Reference in New Issue
Block a user