From b7e6432659fc37f714f75566efed52474c6d2bff Mon Sep 17 00:00:00 2001 From: Macintosh II Date: Fri, 22 Sep 2023 20:04:30 +0300 Subject: [PATCH] Disable the logging of `SaveAsync` due to spam in the logs 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)