mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-10 11:10:40 +02:00
Improve Custom Format rejection messaging
This commit is contained in:
parent
63e132d257
commit
cac97c057f
@ -72,7 +72,11 @@ public Decision IsSatisfiedBy(LocalEpisode localEpisode, DownloadClientItem down
|
||||
currentFormats != null ? currentFormats.ConcatToString() : "",
|
||||
currentFormatScore);
|
||||
|
||||
return Decision.Reject("Not a Custom Format upgrade for existing episode file(s)");
|
||||
return Decision.Reject("Not a Custom Format upgrade for existing episode file(s). New: [{0}] ({1}) do not improve on Existing: [{2}] ({3})",
|
||||
newFormats != null ? newFormats.ConcatToString() : "",
|
||||
newFormatScore,
|
||||
currentFormats != null ? currentFormats.ConcatToString() : "",
|
||||
currentFormatScore);
|
||||
}
|
||||
|
||||
_logger.Debug("New item's custom formats [{0}] ({1}) improve on [{2}] ({3}), accepting",
|
||||
|
Loading…
Reference in New Issue
Block a user