diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index 2b8b7ded1..c1bf7ace9 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -284,7 +284,7 @@ namespace NzbDrone.Core.Notifications } catch (Exception ex) { - _logger.Warn(ex, "Unable to send OnDelete notification to: " + notification.Definition.Name); + _logger.Warn(ex, "Unable to send OnEpisodeFileDelete notification to: " + notification.Definition.Name); } } } @@ -309,7 +309,7 @@ namespace NzbDrone.Core.Notifications } catch (Exception ex) { - _logger.Warn(ex, "Unable to send OnDelete notification to: " + notification.Definition.Name); + _logger.Warn(ex, "Unable to send OnSeriesAdd notification to: " + notification.Definition.Name); } } } @@ -331,7 +331,7 @@ namespace NzbDrone.Core.Notifications } catch (Exception ex) { - _logger.Warn(ex, "Unable to send OnDelete notification to: " + notification.Definition.Name); + _logger.Warn(ex, "Unable to send OnSeriesDelete notification to: " + notification.Definition.Name); } } }