New: Improve messaging when imports are left in queue

pull/5408/head
bakerboy448 2 years ago committed by GitHub
parent c897608bab
commit 863d24996c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -94,7 +94,7 @@ namespace NzbDrone.Core.Download
if (series == null) if (series == null)
{ {
trackedDownload.Warn("Series title mismatch; automatic import is not possible."); trackedDownload.Warn("Series title mismatch; automatic import is not possible. Check the download troubleshooting entry on the wiki for common causes.");
return; return;
} }
@ -104,7 +104,7 @@ namespace NzbDrone.Core.Download
// Show a warning if the release was matched by ID and the source is not interactive search // Show a warning if the release was matched by ID and the source is not interactive search
if (seriesMatchType == SeriesMatchType.Id && releaseSource != ReleaseSourceType.InteractiveSearch) if (seriesMatchType == SeriesMatchType.Id && releaseSource != ReleaseSourceType.InteractiveSearch)
{ {
trackedDownload.Warn("Found matching series via grab history, but release was matched to series by ID. Automatic import is not possible."); trackedDownload.Warn("Found matching series via grab history, but release was matched to series by ID. Automatic import is not possible. See the FAQ for details.");
return; return;
} }
} }
@ -163,7 +163,7 @@ namespace NzbDrone.Core.Download
var statusMessages = new List<TrackedDownloadStatusMessage> var statusMessages = new List<TrackedDownloadStatusMessage>
{ {
new TrackedDownloadStatusMessage("One or more episodes expected in this release were not imported or missing", new List<string>()) new TrackedDownloadStatusMessage("One or more episodes expected in this release were not imported or missing from the release", new List<string>())
}; };
if (importResults.Any(c => c.Result != ImportResultType.Imported)) if (importResults.Any(c => c.Result != ImportResultType.Imported))
@ -242,7 +242,7 @@ namespace NzbDrone.Core.Download
return true; return true;
} }
_logger.Debug("Not all episodes have been imported for {0}", trackedDownload.DownloadItem.Title); _logger.Debug("Not all episodes have been imported for the release '{0}'", trackedDownload.DownloadItem.Title);
return false; return false;
} }
@ -264,7 +264,7 @@ namespace NzbDrone.Core.Download
if ((OsInfo.IsWindows && !downloadItemOutputPath.IsWindowsPath) || if ((OsInfo.IsWindows && !downloadItemOutputPath.IsWindowsPath) ||
(OsInfo.IsNotWindows && !downloadItemOutputPath.IsUnixPath)) (OsInfo.IsNotWindows && !downloadItemOutputPath.IsUnixPath))
{ {
trackedDownload.Warn("[{0}] is not a valid local path. You may need a Remote Path Mapping.", downloadItemOutputPath); trackedDownload.Warn("[{0}] is not a valid local path. You may need a Remote Path Mapping. Check the download troubleshooting entry on the wiki for details.", downloadItemOutputPath);
return false; return false;
} }

Loading…
Cancel
Save