mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-28 11:28:27 +01:00
Merge pull request #3254 from crobibero/ilogger
Use typed logger where possible
This commit is contained in:
@@ -10,7 +10,7 @@ namespace Jellyfin.Server.Migrations.Routines
|
||||
/// </summary>
|
||||
internal class DisableTranscodingThrottling : IMigrationRoutine
|
||||
{
|
||||
private readonly ILogger _logger;
|
||||
private readonly ILogger<DisableTranscodingThrottling> _logger;
|
||||
private readonly IConfigurationManager _configManager;
|
||||
|
||||
public DisableTranscodingThrottling(ILogger<DisableTranscodingThrottling> logger, IConfigurationManager configManager)
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace Jellyfin.Server.Migrations.Routines
|
||||
internal class RemoveDuplicateExtras : IMigrationRoutine
|
||||
{
|
||||
private const string DbFilename = "library.db";
|
||||
private readonly ILogger _logger;
|
||||
private readonly ILogger<RemoveDuplicateExtras> _logger;
|
||||
private readonly IServerApplicationPaths _paths;
|
||||
|
||||
public RemoveDuplicateExtras(ILogger<RemoveDuplicateExtras> logger, IServerApplicationPaths paths)
|
||||
|
||||
Reference in New Issue
Block a user