I'm catching errors in Boost Asio program like
if (!error)
{
//do stuff
}
else
{
std::cout << "Error : " << error << std::endl;
//handle error
}
But the error isn't human-readable (e.g. connecting to SSL server without certificate gives error asio.ssl:335544539). Is there any better way how to display error ?
If you are likely using
boost::system::error_code
you can call:to get a more human-friendly message.
Using
operator<<
translates into:Here you can check a detailed overview of the available members in
error_code
.