diff --git a/src/NzbDrone.Core/MediaFiles/EpisodeImport/ImportDecisionMaker.cs b/src/NzbDrone.Core/MediaFiles/EpisodeImport/ImportDecisionMaker.cs index 9821e8419..5a8a69279 100644 --- a/src/NzbDrone.Core/MediaFiles/EpisodeImport/ImportDecisionMaker.cs +++ b/src/NzbDrone.Core/MediaFiles/EpisodeImport/ImportDecisionMaker.cs @@ -124,6 +124,7 @@ private ImportDecision GetDecision(string file, Movie movie, ParsedMovieInfo fol localMovie.MediaInfo = _videoFileInfoReader.GetMediaInfo(file); if (shouldCheckQuality) { + _logger.Debug("Checking quality for this video file to make sure nothing mismatched."); var width = localMovie.MediaInfo.Width; var current = localMovie.Quality; var qualityName = current.Quality.Name.ToLower(); @@ -255,6 +256,7 @@ private ImportDecision GetDecision(string file, Movie movie, ParsedMovieInfo fol } if (updated != null && updated != current) { + _logger.Debug("Quality ({0}) of the file is different than the one we have ({1})", updated, current); updated.QualitySource = QualitySource.MediaInfo; localMovie.Quality = updated; }