feat: print discord.net and vp# versions on startup

This commit is contained in:
Oliver Booth 2023-08-26 21:38:15 +01:00
parent aaacb3027b
commit 2d3ce57317
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,8 @@ internal sealed class BotService : BackgroundService
{
StartedAt = DateTimeOffset.UtcNow;
_logger.LogInformation("VPLink v{Version} is starting...", Version);
_logger.LogInformation("Discord.Net v{Version}", DiscordNetVersion);
_logger.LogInformation("VP# v{Version}", VpSharpVersion);
return Task.CompletedTask;
}
}