Merge pull request #11711 from Bond-009/log

Only log item id in trickplay warning
This commit is contained in:
Bond-009 2024-05-21 13:57:14 +02:00 committed by GitHub
commit d4f0b03982
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,7 +124,7 @@ public class TrickplayManager : ITrickplayManager
var mediaPath = mediaSource.Path; var mediaPath = mediaSource.Path;
if (!File.Exists(mediaPath)) 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; return;
} }