mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
CentralDispatch is no longer static.
This commit is contained in:
parent
ae9e941b30
commit
ca7deedfb9
6 changed files with 82 additions and 86 deletions
|
@ -9,8 +9,6 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
|||
{
|
||||
private readonly GrowlProvider _growlProvider;
|
||||
|
||||
private readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
|
||||
public Growl(ConfigProvider configProvider, GrowlProvider growlProvider)
|
||||
: base(configProvider)
|
||||
{
|
||||
|
@ -41,7 +39,7 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
|||
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WarnException(ex.Message, ex);
|
||||
_logger.WarnException(ex.Message, ex);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
@ -65,7 +63,7 @@ namespace NzbDrone.Core.Providers.ExternalNotification
|
|||
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WarnException(ex.Message, ex);
|
||||
_logger.WarnException(ex.Message, ex);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue