1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-03 18:15:37 +00:00

Removed retundant logging for Series deletion.

This commit is contained in:
Mark McDowall 2011-05-15 16:39:46 -07:00
parent 13da5ff7f7
commit fa2b609ad3

View file

@ -40,15 +40,11 @@ private void DeleteSeries(ProgressNotification notification, int seriesId)
try
{
var series = _seriesProvider.GetSeries(seriesId);
notification.CurrentMessage = String.Format("Beginning Delete of Series: {0}", seriesId);
notification.CurrentMessage = String.Format("Beginning Delete of Series: {0}", series.Title);
Logger.Debug("Deleting Series from DB {0}", series.Title);
_seriesProvider.DeleteSeries(seriesId);
notification.CurrentMessage = String.Format("Successfully deleted Series: {0}", series.Title);
Logger.Info("Successfully deleted Series [{0}]", seriesId);
notification.CurrentMessage = String.Format("Successfully deleted Series: {0}", seriesId);
}
catch (Exception e)
{