1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: TrackedDownload Logging Statement

This commit is contained in:
Qstick 2019-09-14 18:49:32 -04:00
parent fd2399d589
commit cbb2802383

View File

@ -136,7 +136,7 @@ private List<TrackedDownload> ProcessClientItems(IDownloadClient downloadClient,
}
catch (Exception e)
{
_logger.Error(e, $"Couldn't process tracked download {downloadItem.Title}");
_logger.Error(e, "Couldn't process tracked download {0}", downloadItem.Title);
}
return trackedDownloads;