mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-29 11:16:19 +00:00
Debug log when we're doubling the allowed size for a possible special
This commit is contained in:
parent
a46b542bfd
commit
709f96920d
1 changed files with 1 additions and 0 deletions
|
@ -85,6 +85,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
|
||||||
//or is the last episode in a season that has 10 or more episodes
|
//or is the last episode in a season that has 10 or more episodes
|
||||||
if (seasonEpisodes.First().Id == episode.Id || (seasonEpisodes.Count() >= 10 && seasonEpisodes.Last().Id == episode.Id))
|
if (seasonEpisodes.First().Id == episode.Id || (seasonEpisodes.Count() >= 10 && seasonEpisodes.Last().Id == episode.Id))
|
||||||
{
|
{
|
||||||
|
_logger.Debug("Possible double episode, doubling allowed size.");
|
||||||
maxSize = maxSize * 2;
|
maxSize = maxSize * 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue