Sentry: print welcome string on startup

This commit is contained in:
Lion Kortlepel 2021-08-10 10:26:33 +02:00 committed by Lion
parent b53b72d604
commit 739eaad199

View File

@ -55,6 +55,8 @@ int main(int argc, char** argv) try {
bool Shutdown = false; bool Shutdown = false;
Application::RegisterShutdownHandler([&Shutdown] { Shutdown = true; }); Application::RegisterShutdownHandler([&Shutdown] { Shutdown = true; });
Sentry.PrintWelcome();
TServer Server(argc, argv); TServer Server(argc, argv);
TConfig Config; TConfig Config;