1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-02 01:45:35 +00:00

Log indexer name when failing to process feed.

This commit is contained in:
Mark McDowall 2012-01-01 12:17:53 -08:00
parent 6bd0b8a39e
commit ffde7c0987

View file

@ -186,7 +186,7 @@ private List<EpisodeParseResult> Fetch(IEnumerable<string> urls)
}
catch (Exception feedEx)
{
_logger.ErrorException("An error occurred while processing feed", feedEx);
_logger.ErrorException("An error occurred while processing feed: " + Name, feedEx);
}
}