mirror of
https://github.com/Radarr/Radarr
synced 2025-02-22 14:21:14 +00:00
Improve Custom Format rejection messaging
(cherry picked from commit cac97c057faa44c1656e02681cb9ba668faca488) Closes #9747
This commit is contained in:
parent
51cb0920ed
commit
0b090e5f39
1 changed files with 5 additions and 1 deletions
|
@ -74,7 +74,11 @@ public Decision IsSatisfiedBy(LocalMovie localMovie, DownloadClientItem download
|
|||
currentCustomFormats != null ? currentCustomFormats.ConcatToString() : "",
|
||||
currentFormatScore);
|
||||
|
||||
return Decision.Reject("Not a Custom Format upgrade for existing movie file(s)");
|
||||
return Decision.Reject("Not a Custom Format upgrade for existing movie file(s). New: [{0}] ({1}) do not improve on Existing: [{2}] ({3})",
|
||||
newCustomFormats != null ? newCustomFormats.ConcatToString() : "",
|
||||
newFormatScore,
|
||||
currentCustomFormats != null ? currentCustomFormats.ConcatToString() : "",
|
||||
currentFormatScore);
|
||||
}
|
||||
|
||||
_logger.Debug("New item's custom formats [{0}] ({1}) do improve on [{2}] ({3}), accepting",
|
||||
|
|
Loading…
Reference in a new issue