V13: Log webhook firing exceptions when they happen (#15393)

* Refactor Webhook logging to handle exceptions

* Add Exception occured property to WebhookLog.
This commit is contained in:
Nikolaj Geisle
2023-12-07 14:25:26 +01:00
committed by GitHub
parent d31bb14f57
commit b50353b238
12 changed files with 126 additions and 79 deletions

View File

@@ -37,4 +37,7 @@ public class WebhookLogViewModel
[DataMember(Name = "responseBody")]
public string ResponseBody { get; set; } = string.Empty;
[DataMember(Name = "exceptionOccured")]
public bool ExceptionOccured { get; set; }
}