Bond-009 5 years ago
parent
commit
19844a2c2a

+ 1 - 1
MediaBrowser.Api/Images/ImageService.cs

@@ -239,7 +239,7 @@ namespace MediaBrowser.Api.Images
         /// Initializes a new instance of the <see cref="ImageService" /> class.
         /// </summary>
         public ImageService(
-            Logger<ImageService> logger,
+            ILogger<ImageService> logger,
             IServerConfigurationManager serverConfigurationManager,
             IHttpResultFactory httpResultFactory,
             IUserManager userManager,

+ 1 - 1
MediaBrowser.Api/Music/AlbumsService.cs

@@ -44,7 +44,7 @@ namespace MediaBrowser.Api.Music
         private readonly IAuthorizationContext _authContext;
 
         public AlbumsService(
-            Logger<AlbumsService> logger,
+            ILogger<AlbumsService> logger,
             IServerConfigurationManager serverConfigurationManager,
             IHttpResultFactory httpResultFactory,
             IUserManager userManager,

+ 1 - 1
MediaBrowser.Api/Playback/Progressive/VideoService.cs

@@ -70,7 +70,7 @@ namespace MediaBrowser.Api.Playback.Progressive
     public class VideoService : BaseProgressiveStreamingService
     {
         public VideoService(
-            Logger<VideoService> logger,
+            ILogger<VideoService> logger,
             IServerConfigurationManager serverConfigurationManager,
             IHttpResultFactory httpResultFactory,
             IHttpClient httpClient,