thread shutdown

This commit is contained in:
Michael Davidsaver
2015-11-18 14:12:48 -06:00
parent 730d30fe54
commit f2b47ef5e9
2 changed files with 28 additions and 5 deletions

View File

@@ -545,6 +545,10 @@ void ServerContextImpl::dispose()
{
destroy();
}
catch(std::exception& e)
{
std::cerr<<"Error in: ServerContextImpl::dispose: "<<e.what()<<"\n";
}
catch(...)
{
std::cerr<<"Oh no, something when wrong in ServerContextImpl::dispose!\n";