diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-11-09 14:02:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-09 14:02:38 +0100 |
| commit | ca6211ad61881f298c054ad418c3a099e63be308 (patch) | |
| tree | ba5d5631e2ec3363ababb6967ea1b8f2a859213b /Jellyfin.Server.Implementations/Events/EventManager.cs | |
| parent | 6f85e3047591e716d732a648466c700769404f7c (diff) | |
| parent | 5726535a262ce5f671bb0b74dd00c485d17633f0 (diff) | |
Merge pull request #6813 from Bond-009/warn54
Fix some warnings
Diffstat (limited to 'Jellyfin.Server.Implementations/Events/EventManager.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Events/EventManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Events/EventManager.cs b/Jellyfin.Server.Implementations/Events/EventManager.cs index 8c5d8f2ce..7f7c4750d 100644 --- a/Jellyfin.Server.Implementations/Events/EventManager.cs +++ b/Jellyfin.Server.Implementations/Events/EventManager.cs @@ -57,7 +57,7 @@ namespace Jellyfin.Server.Implementations.Events } catch (Exception e) { - _logger.LogError(e, "Uncaught exception in EventConsumer {type}: ", service.GetType()); + _logger.LogError(e, "Uncaught exception in EventConsumer {Type}: ", service.GetType()); } } } |
