Fixed Prowl ExternalNotifcation.
This commit is contained in:
parent
bbd5cba272
commit
1cf17cfc11
|
@ -40,7 +40,6 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
_logger.WarnException(ex.Message, ex);
|
_logger.WarnException(ex.Message, ex);
|
||||||
throw;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,7 +63,6 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
_logger.WarnException(ex.Message, ex);
|
_logger.WarnException(ex.Message, ex);
|
||||||
throw;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,6 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
||||||
{
|
{
|
||||||
private readonly ProwlProvider _prowlProvider;
|
private readonly ProwlProvider _prowlProvider;
|
||||||
|
|
||||||
private readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
public Prowl(ConfigProvider configProvider, ProwlProvider prowlProvider)
|
public Prowl(ConfigProvider configProvider, ProwlProvider prowlProvider)
|
||||||
: base(configProvider)
|
: base(configProvider)
|
||||||
{
|
{
|
||||||
|
@ -41,8 +39,7 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
||||||
|
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Logger.WarnException(ex.Message, ex);
|
_logger.WarnException(ex.Message, ex);
|
||||||
throw;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,8 +61,7 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
||||||
|
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Logger.WarnException(ex.Message, ex);
|
_logger.WarnException(ex.Message, ex);
|
||||||
throw;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ namespace NzbDrone.Core.Providers
|
||||||
{
|
{
|
||||||
public class ProwlProvider
|
public class ProwlProvider
|
||||||
{
|
{
|
||||||
private readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
private readonly Logger Logger = LogManager.GetLogger("ProwlProvider");
|
||||||
|
|
||||||
public ProwlProvider()
|
public ProwlProvider()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue