Additional logging when an import decision cannot be made

pull/1959/head
Mark McDowall 7 years ago
parent ec3dd982f6
commit 285288db1a
No known key found for this signature in database
GPG Key ID: D4CEFA9A718052E0

@ -118,6 +118,11 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
decision = new ImportDecision(localEpisode, new Rejection("Unexpected error processing file"));
}
if (decision == null)
{
_logger.Error("Unable to make a decision on {0}", file);
}
return decision;
}

Loading…
Cancel
Save