aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Events
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-11-09 13:14:31 +0100
committerBond_009 <bond.009@outlook.com>2021-11-09 13:14:31 +0100
commit5726535a262ce5f671bb0b74dd00c485d17633f0 (patch)
treeba5d5631e2ec3363ababb6967ea1b8f2a859213b /Jellyfin.Server.Implementations/Events
parent6f85e3047591e716d732a648466c700769404f7c (diff)
Fix some warnings
609 left
Diffstat (limited to 'Jellyfin.Server.Implementations/Events')
-rw-r--r--Jellyfin.Server.Implementations/Events/EventManager.cs2
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());
}
}
}