abstract_tcp_server2: log init_server errors as fatal

so they show up by default
pull/95/head
moneromooo-monero 7 years ago
parent b51dc56687
commit 213e326cc9
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -735,7 +735,17 @@ PRAGMA_WARNING_DISABLE_VS(4355)
boost::asio::placeholders::error)); boost::asio::placeholders::error));
return true; return true;
CATCH_ENTRY_L0("boosted_tcp_server<t_protocol_handler>::init_server", false); }
catch (const std::exception &e)
{
MFATAL("Error starting server: " << e.what());
return false;
}
catch (...)
{
MFATAL("Error starting server");
return false;
}
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
PUSH_WARNINGS PUSH_WARNINGS

Loading…
Cancel
Save