New: Improve messaging for rejected quality upgrades

This commit is contained in:
bakerboy448 2022-08-07 13:54:15 -05:00 committed by GitHub
parent 8ab040f612
commit 9263fc1564
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
if (qualityCompare < 0) if (qualityCompare < 0)
{ {
_logger.Debug("This file isn't a quality upgrade for all episodes. Skipping {0}", localEpisode.Path); _logger.Debug("This file isn't a quality upgrade for all episodes. New Quality is {0}. Skipping {1}", localEpisode.Quality.Quality, localEpisode.Path);
return Decision.Reject("Not an upgrade for existing episode file(s)"); return Decision.Reject("Not an upgrade for existing episode file(s). New Quality is {0}", localEpisode.Quality.Quality);
} }
// Same quality, is not a language upgrade, propers/repacks are preferred and it is not a revision update // Same quality, is not a language upgrade, propers/repacks are preferred and it is not a revision update