From 3a69e20248aa11428a1712aad3ac6a8efc9c4962 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 14 Sep 2020 11:05:32 +0100 Subject: [PATCH] Reduce the default log-level for the launcher. --- src/Main/main.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 9e72e99bf..dc2e93461 100755 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -548,9 +548,7 @@ static void logToHome(const std::string& pri) // Main top level initialization int fgMainInit( int argc, char **argv ) { - // set default log level to 'info' for startup, we will revert to a lower - // level once startup is done. - sglog().setLogLevels( SG_ALL, SG_INFO ); + sglog().setLogLevels( SG_ALL, SG_WARN ); sglog().setStartupLoggingEnabled(true); globals = new FGGlobals;