From e4e3770e544fbe7811b5fa09e2f7d4ab58f9f729 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 24 May 2016 18:40:07 -0700 Subject: [PATCH] Log message makes sense now --- .../EpisodeImport/Specifications/NotUnpackingSpecification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/MediaFiles/EpisodeImport/Specifications/NotUnpackingSpecification.cs b/src/NzbDrone.Core/MediaFiles/EpisodeImport/Specifications/NotUnpackingSpecification.cs index f457ddbf2..2260ed71a 100644 --- a/src/NzbDrone.Core/MediaFiles/EpisodeImport/Specifications/NotUnpackingSpecification.cs +++ b/src/NzbDrone.Core/MediaFiles/EpisodeImport/Specifications/NotUnpackingSpecification.cs @@ -26,7 +26,7 @@ public Decision IsSatisfiedBy(LocalEpisode localEpisode) { if (localEpisode.ExistingFile) { - _logger.Debug("{0} is in series folder, unpacking check", localEpisode.Path); + _logger.Debug("{0} is in series folder, skipping unpacking check", localEpisode.Path); return Decision.Accept(); }