From aee91987c2cd8f6fa6f556845eda9d13960da435 Mon Sep 17 00:00:00 2001 From: Ske Date: Mon, 16 Nov 2020 21:59:28 +0100 Subject: [PATCH] Lower log level for gateway event spam --- PluralKit.Bot/Bot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Bot.cs b/PluralKit.Bot/Bot.cs index bb7f53c5..f60ca6c9 100644 --- a/PluralKit.Bot/Bot.cs +++ b/PluralKit.Bot/Bot.cs @@ -106,7 +106,7 @@ namespace PluralKit.Bot using var _ = LogContext.PushProperty("EventId", Guid.NewGuid()); _logger .ForContext("Elastic", "yes?") - .Debug("Gateway event: {@Event}", evt); + .Verbose("Gateway event: {@Event}", evt); await using var serviceScope = _services.BeginLifetimeScope();