From d1a0eaffabdd76f835161d4112d3ee9c2cf1dd82 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 10 Aug 2021 11:00:17 +0200 Subject: [PATCH] Sentry: move print as it was blocking (?) --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index c8624ce..0c3a35e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -58,7 +58,6 @@ int main(int argc, char** argv) try { TServer Server(argc, argv); TConfig Config; - Sentry.PrintWelcome(); if (Config.Failed()) { info("Closing in 10 seconds"); @@ -67,6 +66,8 @@ int main(int argc, char** argv) try { } RegisterThread("Main"); + + Sentry.PrintWelcome(); TResourceManager ResourceManager; TPPSMonitor PPSMonitor(Server); THeartbeatThread Heartbeat(ResourceManager, Server);