From 5cfb5e428fff5493faf5fb47c628705a62fc1c78 Mon Sep 17 00:00:00 2001 From: Macintosh II <95250141+mctaylors@users.noreply.github.com> Date: Wed, 4 Oct 2023 09:42:39 +0300 Subject: [PATCH] Edit log output Signed-off-by: Macintosh II <95250141+mctaylors@users.noreply.github.com> --- src/Services/Update/GuildUpdateService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Update/GuildUpdateService.cs b/src/Services/Update/GuildUpdateService.cs index 26bb769..d13423b 100644 --- a/src/Services/Update/GuildUpdateService.cs +++ b/src/Services/Update/GuildUpdateService.cs @@ -44,7 +44,7 @@ public sealed class GuildUpdateService : BackgroundService } await _guildData.RemoveGuildId(guildId); - _logger.LogInformation("Left guild \"{guildId}\"", guildId); + _logger.LogInformation("Left guild {guildId}", guildId); return Result.FromSuccess(); }