From d6e1468f3e02c31c2d8c48412b2993858c5eef07 Mon Sep 17 00:00:00 2001 From: Macintosh II <95250141+mctaylors@users.noreply.github.com> Date: Fri, 22 Sep 2023 20:09:22 +0300 Subject: [PATCH] Disable the logging of `SaveAsync` due to spam in the logs (#113) Closes #112 Signed-off-by: Macintosh II --- src/Services/GuildDataService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Services/GuildDataService.cs b/src/Services/GuildDataService.cs index e3c0b96..b07755d 100644 --- a/src/Services/GuildDataService.cs +++ b/src/Services/GuildDataService.cs @@ -44,7 +44,6 @@ public sealed class GuildDataService : IHostedService public async Task SaveAsync(CancellationToken ct) { - _logger.LogInformation("Saving guild data..."); var tasks = new List(); var datas = _datas.Values.ToArray(); foreach (var data in datas)