Improve messaging for accepted Custom Formats scoring upgrades

Co-authored-by: bakerboy448 <55419169+bakerboy448@users.noreply.github.com>

Closes #9496
This commit is contained in:
Bogdan 2023-12-16 00:37:41 +02:00
parent 1d70f36e7d
commit 4bcde25e29
1 changed files with 6 additions and 1 deletions

View File

@ -78,7 +78,12 @@ 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;
}