diff --git a/sn_cli/src/main.rs b/sn_cli/src/main.rs index f2230322b5..8b7cf2ec0d 100644 --- a/sn_cli/src/main.rs +++ b/sn_cli/src/main.rs @@ -88,9 +88,12 @@ async fn main() -> Result<()> { let bootstrap_peers = parse_peers_args(opt.peers).await?; println!( - "Connecting to the network w/peers: {:?}...", - bootstrap_peers + "Connecting to the network w/peers:", ); + for peer in &bootstrap_peers { + println!("{}", peer); + } + let bootstrap_peers = if bootstrap_peers.is_empty() { // empty vec is returned if `local-discovery` flag is provided None