From 2bb8c084c9a012d11545313c28b64b2d69e87e1f Mon Sep 17 00:00:00 2001 From: spiral Date: Sun, 1 Aug 2021 12:32:40 -0400 Subject: [PATCH] add missing ) in debug string --- PluralKit.Bot/Services/WebhookExecutorService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Services/WebhookExecutorService.cs b/PluralKit.Bot/Services/WebhookExecutorService.cs index 398318ec..1c2701e1 100644 --- a/PluralKit.Bot/Services/WebhookExecutorService.cs +++ b/PluralKit.Bot/Services/WebhookExecutorService.cs @@ -71,7 +71,7 @@ namespace PluralKit.Bot // Log the relevant metrics _metrics.Measure.Meter.Mark(BotMetrics.MessagesProxied); - _logger.Information("Invoked webhook {Webhook} in channel {Channel} (thread {ThreadId}", webhook.Id, + _logger.Information("Invoked webhook {Webhook} in channel {Channel} (thread {ThreadId})", webhook.Id, req.ChannelId, req.ThreadId); return webhookMessage; @@ -137,7 +137,7 @@ namespace PluralKit.Bot { // Error 10015 = "Unknown Webhook" - this likely means the webhook was deleted // but is still in our cache. Invalidate, refresh, try again - _logger.Warning("Error invoking webhook {Webhook} in channel {Channel} (thread {ThreadId}", + _logger.Warning("Error invoking webhook {Webhook} in channel {Channel} (thread {ThreadId})", webhook.Id, webhook.ChannelId, req.ThreadId); var newWebhook = await _webhookCache.InvalidateAndRefreshWebhook(req.ChannelId, webhook);