New: Improve logging when checking if release is an upgrade

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2019-09-10 23:46:44 -04:00
parent e6e8d1a8ea
commit a11561901e
1 changed files with 4 additions and 0 deletions

View File

@ -64,6 +64,8 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
private bool IsPreferredWordUpgradable(int currentScore, int newScore)
{
_logger.Debug("Comparing preferred word score. Current: {0} New: {1}", currentScore, newScore);
return newScore > currentScore;
}
@ -74,6 +76,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
if (qualityUpgrade == ProfileComparisonResult.Upgrade)
{
_logger.Debug("New item has a better quality");
return true;
}
@ -89,6 +92,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
return false;
}
_logger.Debug("New item has a better preferred word score");
return true;
}