1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Improve Custom Format compare logging

Co-authored-by: Stevie Robinson <stevie.robinson@gmail.com>
This commit is contained in:
bakerboy448
2023-12-28 14:35:04 -06:00
committed by GitHub
parent f9d9754220
commit 65aeb19486
2 changed files with 20 additions and 6 deletions
@@ -78,7 +78,11 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
return false;
}
_logger.Debug("New item has a better custom format score");
_logger.Debug("New item's custom formats [{0}] ({1}) improve on [{2}] ({3}), accepting",
newCustomFormats.ConcatToString(),
newFormatScore,
currentCustomFormats.ConcatToString(),
currentFormatScore);
return true;
}