From 1f2c73b40a0d38931f77e0ed46f34c6d18354b2e Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Sat, 18 May 2024 13:13:34 +0200 Subject: [PATCH] Only log item id in trackplay warning Turns out it's the same `[WRN] [53] Jellyfin.Server.Implementations.Trickplay.TrickplayManager: Media source "17a76092102691425e94624a69247057" not found at "/mnt/USBshare/Movies/Top Gun (1986)/extras/Top Gun_t04.mkv" for item 17a76092-1026-9142-5e94-624a69247057` --- Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs b/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs index ccd04612f7..ad840e66d6 100644 --- a/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs +++ b/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs @@ -124,7 +124,7 @@ public class TrickplayManager : ITrickplayManager var mediaPath = mediaSource.Path; if (!File.Exists(mediaPath)) { - _logger.LogWarning("Media source {MediaSourceId} not found at {Path} for item {ItemID}", mediaSource.Id, mediaPath, video.Id); + _logger.LogWarning("Media not found at {Path} for item {ItemID}", mediaPath, video.Id); return; }