fixed deadlock in logger

This commit is contained in:
BadAix 2015-08-08 10:19:44 +02:00
parent e35e724110
commit e45eb08be6
5 changed files with 8 additions and 8 deletions

View file

@ -139,7 +139,7 @@ void PipeReader::worker()
}
catch(const std::exception& e)
{
std::cerr << "Exception: " << e.what() << std::endl;
logE << "Exception: " << e.what() << std::endl;
}
}
}