Fixed: TrackedDownload Logging Statement

This commit is contained in:
Qstick 2019-09-14 18:49:32 -04:00
parent fd2399d589
commit cbb2802383
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ namespace NzbDrone.Core.Download.TrackedDownloads
}
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;