mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Don't user ILoggerFactory.
This commit is contained in:
parent
c6855e6a2a
commit
2338a53229
@ -35,7 +35,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
||||
|
||||
public AttachmentExtractor(
|
||||
ILibraryManager libraryManager,
|
||||
ILoggerFactory loggerFactory,
|
||||
ILogger<AttachmentExtractor> logger,
|
||||
IApplicationPaths appPaths,
|
||||
IFileSystem fileSystem,
|
||||
IMediaEncoder mediaEncoder,
|
||||
@ -43,7 +43,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
||||
IProcessFactory processFactory)
|
||||
{
|
||||
_libraryManager = libraryManager;
|
||||
_logger = loggerFactory.CreateLogger(nameof(AttachmentExtractor));
|
||||
_logger = logger;
|
||||
_appPaths = appPaths;
|
||||
_fileSystem = fileSystem;
|
||||
_mediaEncoder = mediaEncoder;
|
||||
|
Loading…
x
Reference in New Issue
Block a user