|
|
@ -72,7 +72,11 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
|
|
|
currentFormats != null ? currentFormats.ConcatToString() : "",
|
|
|
|
currentFormats != null ? currentFormats.ConcatToString() : "",
|
|
|
|
currentFormatScore);
|
|
|
|
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",
|
|
|
|
_logger.Debug("New item's custom formats [{0}] ({1}) improve on [{2}] ({3}), accepting",
|
|
|
|