From 3c7afbfdaa6a480b7dbd0b56edec5be89b15d693 Mon Sep 17 00:00:00 2001 From: Ske Date: Mon, 28 Oct 2019 17:03:16 +0100 Subject: [PATCH] Lower log level of an unnecessary webhook logging message --- PluralKit.Bot/Services/WebhookExecutorService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Services/WebhookExecutorService.cs b/PluralKit.Bot/Services/WebhookExecutorService.cs index b1f272d1..81556b6b 100644 --- a/PluralKit.Bot/Services/WebhookExecutorService.cs +++ b/PluralKit.Bot/Services/WebhookExecutorService.cs @@ -31,7 +31,7 @@ namespace PluralKit.Bot public async Task ExecuteWebhook(ITextChannel channel, string name, string avatarUrl, string content, IAttachment attachment) { - _logger.Debug("Invoking webhook in channel {Channel}", channel.Id); + _logger.Verbose("Invoking webhook in channel {Channel}", channel.Id); // Get a webhook, execute it var webhook = await _webhookCache.GetWebhook(channel);