New: Log when media info is unavailable for a file when building a file name

This commit is contained in:
Mark McDowall 2019-01-18 11:44:51 -08:00
parent fb67e123f4
commit 70fb1551af
1 changed files with 6 additions and 1 deletions

View File

@ -537,7 +537,12 @@ namespace NzbDrone.Core.Organizer
private void AddMediaInfoTokens(Dictionary<string, Func<TokenMatch, string>> tokenHandlers, EpisodeFile episodeFile)
{
if (episodeFile.MediaInfo == null) return;
if (episodeFile.MediaInfo == null)
{
_logger.Trace("Media info is unavailable for {0}", episodeFile);
return;
}
var sceneName = episodeFile.GetSceneOrFileName();