Problem: Foreign RPC URL is not reported in the logs

The current behavior for logs displayed during the bridge initialization
is not consistent - home url is reported whereas foreign url is not.

Solution: report it

Fixes #69
This commit is contained in:
Yurii Rashkovskii 2018-05-04 11:03:25 -07:00
parent ce487b34a6
commit b7459f00e6
No known key found for this signature in database
GPG Key ID: 1D60D7CFD80845FF
1 changed files with 1 additions and 0 deletions

View File

@ -125,6 +125,7 @@ fn execute<S, I>(command: I, running: Arc<AtomicBool>) -> Result<String, UserFac
let mut event_loop = Core::new().unwrap();
info!(target: "bridge", "Home rpc host {}", config.clone().home.rpc_host);
info!(target: "bridge", "Foreign rpc host {}", config.clone().foreign.rpc_host);
info!(target: "bridge", "Establishing connection:");