1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00

Update src/Services/GuildDataService.cs

Co-authored-by: Octol1ttle <l1ttleofficial@outlook.com>
Signed-off-by: Macintosh II <95250141+mctaylors@users.noreply.github.com>
This commit is contained in:
Macintxsh 2023-09-22 15:23:17 +03:00 committed by GitHub
parent cdd5dbdcd3
commit 0d0efe30f6
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,7 +139,7 @@ public sealed class GuildDataService : IHostedService
Directory.CreateDirectory($"{newPath}/.."); Directory.CreateDirectory($"{newPath}/..");
Directory.Move(oldPath, newPath); Directory.Move(oldPath, newPath);
_logger.LogInformation("Migrated GuildData: \"{oldPath}\" -> \"{newPath}\"", oldPath, newPath); _logger.LogInformation("Moved guild data to separate folder: \"{OldPath}\" -> \"{NewPath}\"", oldPath, newPath);
} }
} }