diff --git a/source/glest_game/main/main.cpp b/source/glest_game/main/main.cpp index 56f27be05..46aa28e41 100644 --- a/source/glest_game/main/main.cpp +++ b/source/glest_game/main/main.cpp @@ -155,13 +155,13 @@ static void cleanupProcessObjects() { SystemFlags::Close(); SystemFlags::SHUTDOWN_PROGRAM_MODE=true; - printf("start running threads = %lu\n",Thread::getThreadList().size()); + if(SystemFlags::VERBOSE_MODE_ENABLED) printf("start running threads = %lu\n",Thread::getThreadList().size()); time_t elapsed = time(NULL); for(;Thread::getThreadList().size() > 0 && difftime(time(NULL),elapsed) <= 10;) { //sleep(0); } - printf("end running threads = %lu\n",Thread::getThreadList().size()); + if(SystemFlags::VERBOSE_MODE_ENABLED) printf("end running threads = %lu\n",Thread::getThreadList().size()); std::map &crcPlayerTextureCache = CacheManager::getCachedItem< std::map >(GameConstants::playerTextureCacheLookupKey); //deleteMapValues(crcPlayerTextureCache.begin(),crcPlayerTextureCache.end()); diff --git a/source/shared_lib/sources/platform/posix/miniftpserver.cpp b/source/shared_lib/sources/platform/posix/miniftpserver.cpp index 3727142c2..6dbe2736d 100644 --- a/source/shared_lib/sources/platform/posix/miniftpserver.cpp +++ b/source/shared_lib/sources/platform/posix/miniftpserver.cpp @@ -64,6 +64,8 @@ FTPServerThread::FTPServerThread(std::pair mapsPath, ftpInit(&FindExternalFTPServerIp,&UPNP_Tools::AddUPNPPortForward,&UPNP_Tools::RemoveUPNPPortForward, &isValidClientType); VERBOSE_MODE_ENABLED = SystemFlags::VERBOSE_MODE_ENABLED; + + if(SystemFlags::VERBOSE_MODE_ENABLED) printf("***FTP SERVER STARTED [%p]\n",this); } FTPServerThread::~FTPServerThread() { @@ -77,6 +79,8 @@ FTPServerThread::~FTPServerThread() { UPNP_Tools::upnp_rem_redirect(ServerSocket::getFTPServerPort() + clientIndex); } if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__); + + if(SystemFlags::VERBOSE_MODE_ENABLED) printf("***FTP SERVER ENDED [%p]\n",this); } void FTPServerThread::signalQuit() {