提交 9e120e1c 编写于 作者: A Anton Perkov

keosd process exits if failed to bind to port #3314

上级 07a67985
......@@ -304,10 +304,13 @@ namespace eosio {
my->server.start_accept();
} catch ( const fc::exception& e ){
elog( "http: ${e}", ("e",e.to_detail_string()));
throw;
} catch ( const std::exception& e ){
elog( "http: ${e}", ("e",e.what()));
throw;
} catch (...) {
elog("error thrown from http io service");
throw;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册