From cc4fb5a40bf07898478e742329aae1bd9a1572db Mon Sep 17 00:00:00 2001 From: geogolem Date: Fri, 3 Mar 2017 12:52:50 -0500 Subject: [PATCH] the movie was not being printed correctly, and i believe this was also causing movies to be added when they shouldnt have been... --- src/NzbDrone.Core/NetImport/NetImportSearchService.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/NetImport/NetImportSearchService.cs b/src/NzbDrone.Core/NetImport/NetImportSearchService.cs index a93b9fe92..2c3f257fc 100644 --- a/src/NzbDrone.Core/NetImport/NetImportSearchService.cs +++ b/src/NzbDrone.Core/NetImport/NetImportSearchService.cs @@ -134,7 +134,10 @@ namespace NzbDrone.Core.NetImport var movies = listedMovies.Where(x => !_movieService.MovieExists(x)).ToList(); - _logger.Debug("Found {0} movies on your auto enabled lists not in your library", movies.Count); + if (movies.Count > 0) + { + _logger.Info("Found {0} movies on your auto enabled lists not in your library", movies.Count); + } foreach (var movie in movies) { @@ -145,7 +148,7 @@ namespace NzbDrone.Core.NetImport { if (exclusion == movie.ImdbId || exclusion == movie.TmdbId.ToString()) { - _logger.Info("Movie: {0} was found but will not be added because it {exclusion} was found on your exclusion list", exclusion); + _logger.Info("Movie: {0} was found but will not be added because {1} was found on your exclusion list",movie, exclusion); shouldAdd = false; break; }