mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-19 17:32:38 +01:00
Improve Custom Format rejection messaging
(cherry picked from commit cac97c057faa44c1656e02681cb9ba668faca488) Closes #9747
This commit is contained in:
parent
51cb0920ed
commit
0b090e5f39
@ -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 New Issue
Block a user