Improve RPC service startup error messages with actual error
Error always fixed to message about ports but that's not the only error that can occur.
This commit is contained in:
parent
978fd6858f
commit
8cc751d1cc
|
@ -59,8 +59,8 @@ impl JsonRpcService {
|
||||||
AccessControlAllowOrigin::Any,
|
AccessControlAllowOrigin::Any,
|
||||||
]))
|
]))
|
||||||
.start_http(&rpc_addr);
|
.start_http(&rpc_addr);
|
||||||
if server.is_err() {
|
if let Err(e) = server {
|
||||||
warn!("JSON RPC service unavailable: unable to bind to RPC port {}. \nMake sure this port is not already in use by another application", rpc_addr.port());
|
warn!("JSON RPC service unavailable error: {:?}. \nAlso, check that port {} is not already in use by another application", e, rpc_addr.port());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
while !exit_.load(Ordering::Relaxed) {
|
while !exit_.load(Ordering::Relaxed) {
|
||||||
|
|
|
@ -59,8 +59,8 @@ impl PubSubService {
|
||||||
})
|
})
|
||||||
.start(&pubsub_addr);
|
.start(&pubsub_addr);
|
||||||
|
|
||||||
if server.is_err() {
|
if let Err(e) = server {
|
||||||
warn!("Pubsub service unavailable: unable to bind to port {}. \nMake sure this port is not already in use by another application", pubsub_addr.port());
|
warn!("Pubsub service unavailable error: {:?}. \nAlso, check that port {} is not already in use by another application", e, pubsub_addr.port());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
while !exit_.load(Ordering::Relaxed) {
|
while !exit_.load(Ordering::Relaxed) {
|
||||||
|
|
Loading…
Reference in New Issue