From 739eaad199008dd69d91e7abcac90b1e48bbe816 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 10 Aug 2021 10:26:33 +0200 Subject: [PATCH] Sentry: print welcome string on startup --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 2baa96a..7f10294 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -55,6 +55,8 @@ int main(int argc, char** argv) try { bool Shutdown = false; Application::RegisterShutdownHandler([&Shutdown] { Shutdown = true; }); + Sentry.PrintWelcome(); + TServer Server(argc, argv); TConfig Config;