mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 14:55:20 -07:00
New: Log rejections/acceptance before importing files
This commit is contained in:
parent
7c5daa6000
commit
714ce2640b
1 changed files with 8 additions and 0 deletions
|
@ -129,6 +129,14 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
|
||||||
{
|
{
|
||||||
_logger.Error("Unable to make a decision on {0}", file);
|
_logger.Error("Unable to make a decision on {0}", file);
|
||||||
}
|
}
|
||||||
|
else if (decision.Rejections.Any())
|
||||||
|
{
|
||||||
|
_logger.Debug("File rejected for the following reasons: {0}", string.Join(", ", decision.Rejections));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.Debug("File accepted");
|
||||||
|
}
|
||||||
|
|
||||||
return decision;
|
return decision;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue