diff options
| author | Bond-009 <bond.009@outlook.com> | 2024-05-21 13:57:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-21 13:57:14 +0200 |
| commit | d4f0b039820754dc6c506fbba2dd72384b60fd24 (patch) | |
| tree | 47a097e4d0a2236d62ef966f90633366b332743c | |
| parent | d257c3c1bbb106821d421776a8ea1356aa5d8327 (diff) | |
| parent | 1f2c73b40a0d38931f77e0ed46f34c6d18354b2e (diff) | |
Merge pull request #11711 from Bond-009/log
Only log item id in trickplay warning
| -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; } |
