diff --git a/src/HealthChecks.UI/Core/Notifications/WebHookFailureNotifier.cs b/src/HealthChecks.UI/Core/Notifications/WebHookFailureNotifier.cs index 1e0a6cd0c2..cd6be44214 100644 --- a/src/HealthChecks.UI/Core/Notifications/WebHookFailureNotifier.cs +++ b/src/HealthChecks.UI/Core/Notifications/WebHookFailureNotifier.cs @@ -139,7 +139,7 @@ private async Task SendRequestAsync(Uri uri, string name, string payloadContent) } catch (Exception exception) { - _logger.LogError($"The failure notification for {name} has not executed successfully.", exception); + _logger.LogError(exception, $"The failure notification for {name} has not executed successfully."); } }