Improved error message when unable to accept RPC connection (#1626)
This commit is contained in:
parent
7a41f6daaf
commit
2c22b21025
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ void nano::rpc::accept ()
|
|||
}
|
||||
else
|
||||
{
|
||||
BOOST_LOG (this->node.log) << boost::str (boost::format ("Error accepting RPC connections: %1%") % ec);
|
||||
BOOST_LOG (this->node.log) << boost::str (boost::format ("Error accepting RPC connections: %1% (%2%)") % ec.message () % ec.value ());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue