mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
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:
parent
a99ee41f38
commit
747ed0af84
1 changed files with 4 additions and 0 deletions
|
@ -64,6 +64,8 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||||
|
|
||||||
private bool IsPreferredWordUpgradable(int currentScore, int newScore)
|
private bool IsPreferredWordUpgradable(int currentScore, int newScore)
|
||||||
{
|
{
|
||||||
|
_logger.Debug("Comparing preferred word score. Current: {0} New: {1}", currentScore, newScore);
|
||||||
|
|
||||||
return newScore > currentScore;
|
return newScore > currentScore;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,6 +76,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||||
|
|
||||||
if (qualityUpgrade == ProfileComparisonResult.Upgrade)
|
if (qualityUpgrade == ProfileComparisonResult.Upgrade)
|
||||||
{
|
{
|
||||||
|
_logger.Debug("New item has a better quality");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,6 +92,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_logger.Debug("New item has a better preferred word score");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue