1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-08 17:05:25 +02:00

Flush stderr in Application::Exit

fixes 
This commit is contained in:
Gunnar Beutner 2015-03-20 12:27:40 +01:00
parent fd3536489b
commit 76b0c6d89d

@ -108,6 +108,7 @@ Application::~Application(void)
void Application::Exit(int rc)
{
std::cout.flush();
std::cerr.flush();
BOOST_FOREACH(const Logger::Ptr& logger, Logger::GetLoggers()) {
logger->Flush();