Fixed: Rework Multiple Logging Statements

This commit is contained in:
Qstick
2019-09-21 14:35:07 -04:00
parent cbb2802383
commit 7dc629a647
4 changed files with 5 additions and 5 deletions
@@ -102,7 +102,7 @@ namespace NzbDrone.Core.NetImport
{
anyFailure = true;
feedEx.Data.Add("FeedUrl", url);
_logger.Error(feedEx, "An error occurred while processing feed. " + url);
_logger.Error(feedEx, "An error occurred while processing list feed {0}", url);
}
return new NetImportFetchResult {Movies = movies, AnyFailure = anyFailure};