From 0cc4639e65d42af91ef3b37c3b5394423bc207de Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 3 Dec 2014 16:45:40 -0800 Subject: [PATCH] Log reason why download isn't being imported --- src/NzbDrone.Core/Download/CompletedDownloadService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/CompletedDownloadService.cs b/src/NzbDrone.Core/Download/CompletedDownloadService.cs index f1ab9f617..ae88b8b91 100644 --- a/src/NzbDrone.Core/Download/CompletedDownloadService.cs +++ b/src/NzbDrone.Core/Download/CompletedDownloadService.cs @@ -74,7 +74,8 @@ namespace NzbDrone.Core.Download else if (trackedDownload.Status != TrackedDownloadStatus.Ok) { - _logger.Debug("Tracked download status is: {0}, skipping import.", trackedDownload.Status); + _logger.Debug("Tracked download status is: {0}, skipping import. {1}", trackedDownload.Status, + String.Join(". ", trackedDownload.StatusMessages)); return; }