Added additional logging when updating episode info.

pull/4/head
Mark McDowall 13 years ago
parent 2cc066ccf2
commit 6bd0b8a39e

@ -321,8 +321,15 @@ namespace NzbDrone.Core.Providers
}
}
_database.InsertMany(newList);
_database.UpdateMany(updateList);
try
{
_database.InsertMany(newList);
_database.UpdateMany(updateList);
}
catch(Exception ex)
{
Logger.WarnException("Failed to update episode info for series: " + series.Title, ex);
}
Logger.Info("Finished episode refresh for series: {0}. Successful: {1} - Failed: {2} ",
tvDbSeriesInfo.SeriesName, successCount, failCount);

Loading…
Cancel
Save