From 62cd28b1f0145e52823a4b54ac1d8c41576c1dfe Mon Sep 17 00:00:00 2001 From: alyssa Date: Tue, 18 Jun 2024 05:56:28 +0900 Subject: [PATCH] fix: log dispatch errors correctly --- PluralKit.Core/Dispatch/DispatchService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Core/Dispatch/DispatchService.cs b/PluralKit.Core/Dispatch/DispatchService.cs index 73c7acd6..783587f1 100644 --- a/PluralKit.Core/Dispatch/DispatchService.cs +++ b/PluralKit.Core/Dispatch/DispatchService.cs @@ -34,7 +34,7 @@ public class DispatchService { if (isVerify) throw; - _logger.Error("Could not dispatch webhook request!", e); + _logger.Error(e, "Could not dispatch webhook request!"); } }