Fixed: Webhook notification error messages

pull/5693/head
bakerboy448 1 year ago committed by GitHub
parent b510201b43
commit e9bbb0b9ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);
}
}
}

Loading…
Cancel
Save