mirror of
https://github.com/Readarr/Readarr
synced 2026-01-09 00:53:34 +01:00
Log reason why download isn't being imported
This commit is contained in:
parent
2de837558b
commit
0cc4639e65
1 changed files with 2 additions and 1 deletions
|
|
@ -74,7 +74,8 @@ public void CheckForCompletedItem(IDownloadClient downloadClient, TrackedDownloa
|
|||
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue