From 5e0cb1b6e304ed20b16b79226142dd864b93237c Mon Sep 17 00:00:00 2001 From: James Turner Date: Sun, 6 Mar 2022 20:02:35 +0000 Subject: [PATCH] Remove some obsolete startup log messages --- src/Main/main.cxx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 3c0708975..84a825e4b 100755 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -589,9 +589,6 @@ int fgMainInit( int argc, char **argv ) "Flightgear was unable to create the lock file in FG_HOME"); } - std::cerr << "DidInitHome" << std::endl; - - #if defined(HAVE_QT) flightgear::initApp(argc, argv); #endif @@ -642,12 +639,10 @@ int fgMainInit( int argc, char **argv ) // now home is initialised, we can log to a file inside it const auto level = flightgear::Options::getArgValue(argc, argv, "--log-level"); logToHome(level); - std::cerr << "DidLogToHome" << std::endl; } if (readOnlyFGHome) { flightgear::addSentryTag("fghome-readonly", "true"); - std::cerr << "Read-Only-Home" << std::endl; } std::string version(FLIGHTGEAR_VERSION);