Lower log level of an unnecessary webhook logging message

This commit is contained in:
Ske 2019-10-28 17:03:16 +01:00
parent c639e9ba1e
commit 3c7afbfdaa

View File

@ -31,7 +31,7 @@ namespace PluralKit.Bot
public async Task<ulong> ExecuteWebhook(ITextChannel channel, string name, string avatarUrl, string content, IAttachment attachment) public async Task<ulong> 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 // Get a webhook, execute it
var webhook = await _webhookCache.GetWebhook(channel); var webhook = await _webhookCache.GetWebhook(channel);