diff options
| author | Bond_009 <bond.009@outlook.com> | 2024-05-18 13:13:34 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2024-05-18 13:13:34 +0200 |
| commit | 1f2c73b40a0d38931f77e0ed46f34c6d18354b2e (patch) | |
| tree | e267cf2726a3b8e72843ebe467dfb779dec7c6fc | |
| parent | 01946c6ef58fee737ae03aacd0bc0f32a5b8226e (diff) | |
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`
| -rw-r--r-- | Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs b/Jellyfin.Server.Implementations/Trickplay/TrickplayManager.cs index ccd04612f..ad840e66d 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; } |
