From fa2b609ad38735f443e0cd5c045385e069f3640c Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 15 May 2011 16:39:46 -0700 Subject: [PATCH] Removed retundant logging for Series deletion. --- NzbDrone.Core/Providers/Jobs/DeleteSeriesJob.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/NzbDrone.Core/Providers/Jobs/DeleteSeriesJob.cs b/NzbDrone.Core/Providers/Jobs/DeleteSeriesJob.cs index 33584bdef..073736f89 100644 --- a/NzbDrone.Core/Providers/Jobs/DeleteSeriesJob.cs +++ b/NzbDrone.Core/Providers/Jobs/DeleteSeriesJob.cs @@ -40,15 +40,11 @@ namespace NzbDrone.Core.Providers.Jobs 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) {