diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-06-13 00:29:43 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-13 00:29:43 +0900 |
| commit | 403cd3205ffb970cfda88b6c49dc69127fada798 (patch) | |
| tree | 5c73dd32084db1dd79fbd42f1f8e0cec5277adb5 /MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs | |
| parent | 91fcd56380c6991cbf484bbc1b0ce08b0fab6c1e (diff) | |
| parent | 0982b73c117cc7ee66cde3a3a1bba80a659cfd57 (diff) | |
Merge pull request #3254 from crobibero/ilogger
Use typed logger where possible
Diffstat (limited to 'MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs b/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs index 3f177a9fa..a82f2108f 100644 --- a/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs +++ b/MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs @@ -21,7 +21,7 @@ namespace MediaBrowser.MediaEncoding.Attachments { public class AttachmentExtractor : IAttachmentExtractor, IDisposable { - private readonly ILogger _logger; + private readonly ILogger<AttachmentExtractor> _logger; private readonly IApplicationPaths _appPaths; private readonly IFileSystem _fileSystem; private readonly IMediaEncoder _mediaEncoder; |
