Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/fa2b609ad38735f443e0cd5c045385e069f3640c You should set ROOT_URL correctly, otherwise the web may not work correctly.

Removed retundant logging for Series deletion.

pull/3113/head
Mark McDowall 14 years ago
parent 13da5ff7f7
commit fa2b609ad3

@ -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)
{

Loading…
Cancel
Save