X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Ffmsapp.cpp;h=261ea4643c96abe934b2bc8d34e670acb612c155;hb=e662ea47fba8715474851ceebacba400984ee433;hp=01fcf9a6cecd912982072e8d056274345b03461c;hpb=278ee758050cb7772cd95946688c5b40104f4d8b;p=fms.git diff --git a/src/fmsapp.cpp b/src/fmsapp.cpp index 01fcf9a..261ea46 100644 --- a/src/fmsapp.cpp +++ b/src/fmsapp.cpp @@ -181,6 +181,7 @@ int FMSApp::main(const std::vector &args) else { logger().information("FMS startup v"FMS_VERSION); + logger().information("Using SQLite "SQLITE_VERSION); std::string tempval=""; Option::Instance()->Get("VacuumOnStartup",tempval); @@ -262,6 +263,10 @@ void FMSApp::StartThreads() { logger().trace("FMSApp::StartThreads starting HTTPThread"); m_threads.Start(new HTTPThread()); + if(isInteractive()) + { + std::cout << "Started HTTP Thread" << std::endl; + } } else { @@ -274,6 +279,10 @@ void FMSApp::StartThreads() { logger().trace("FMSApp::StartThreads starting NNTPListener"); m_threads.Start(new NNTPListener()); + if(isInteractive()) + { + std::cout << "Started NNTP Thread" << std::endl; + } } else { @@ -286,6 +295,10 @@ void FMSApp::StartThreads() { logger().trace("FMSApp::StartThreads starting FreenetMasterThread"); m_threads.Start(new FreenetMasterThread()); + if(isInteractive()) + { + std::cout << "Started Freenet FCP Thread" << std::endl; + } } else {