Fixed a couple of logging errors.

This commit is contained in:
Taloth Saldono
2015-03-01 22:34:39 +01:00
parent 8d16b8b9d6
commit 2e81e278e1
3 changed files with 3 additions and 3 deletions
@@ -61,7 +61,7 @@ namespace NzbDrone.Core.Download
var downloadClient = _downloadClientProvider.Get(trackedDownload.DownloadClient);
try
{
_logger.Debug("[{0}] Removing download from {1} history", trackedDownload.DownloadItem.DownloadClient);
_logger.Debug("[{0}] Removing download from {1} history", trackedDownload.DownloadItem.Title, trackedDownload.DownloadItem.DownloadClient);
downloadClient.RemoveItem(trackedDownload.DownloadItem.DownloadId, true);
trackedDownload.DownloadItem.Removed = true;
}