mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 06:17:08 -04:00
Additional logging when an import decision cannot be made
This commit is contained in:
parent
ec3dd982f6
commit
285288db1a
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue