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 /Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs | |
| parent | 91fcd56380c6991cbf484bbc1b0ce08b0fab6c1e (diff) | |
| parent | 0982b73c117cc7ee66cde3a3a1bba80a659cfd57 (diff) | |
Merge pull request #3254 from crobibero/ilogger
Use typed logger where possible
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs index b2e957d5b..c18aa1629 100644 --- a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs +++ b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs @@ -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) |
