From cdd5dbdcd31a832a6531ee0a4307d33bc8becf64 Mon Sep 17 00:00:00 2001 From: Macintosh II Date: Fri, 22 Sep 2023 14:51:45 +0300 Subject: [PATCH] Resolving check issues... Signed-off-by: Macintosh II --- src/Services/GuildDataService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/GuildDataService.cs b/src/Services/GuildDataService.cs index 501c953..0f697e4 100644 --- a/src/Services/GuildDataService.cs +++ b/src/Services/GuildDataService.cs @@ -139,7 +139,7 @@ public sealed class GuildDataService : IHostedService Directory.CreateDirectory($"{newPath}/.."); Directory.Move(oldPath, newPath); - _logger.LogInformation($"Migrated GuildData: \"{oldPath}\" -> \"{newPath}\""); + _logger.LogInformation("Migrated GuildData: \"{oldPath}\" -> \"{newPath}\"", oldPath, newPath); } }