From 3e7f766d95a7101681ebadfff9c7eadb18314a25 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Tue, 26 Oct 2021 11:22:28 +0200 Subject: CLI: default rpc_host --- src/garage/cli/init.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/garage/cli') diff --git a/src/garage/cli/init.rs b/src/garage/cli/init.rs index 9eda085f..80283c8f 100644 --- a/src/garage/cli/init.rs +++ b/src/garage/cli/init.rs @@ -1,5 +1,7 @@ use std::path::PathBuf; +use log::warn; + use garage_util::error::*; pub const READ_KEY_ERROR: &str = "Unable to read node key. It will be generated by your garage node the first time is it launched. Ensure that your garage node is currently running. (The node key is supposed to be stored in your metadata directory.)"; @@ -22,11 +24,11 @@ pub fn node_id_command(config_file: PathBuf, quiet: bool) -> Result<(), Error> { println!("{}", idstr); if !quiet { - eprintln!("WARNING: I don't know the public address to reach this node."); - eprintln!("In all of the instructions below, replace 127.0.0.1:3901 by the appropriate address and port."); + warn!("WARNING: I don't know the public address to reach this node."); + warn!("In all of the instructions below, replace 127.0.0.1:{} by the appropriate address and port.", config.rpc_bind_addr.port()); } - format!("{}@127.0.0.1:3901", idstr) + format!("{}@127.0.0.1:{}", idstr, config.rpc_bind_addr.port()) }; if !quiet { -- cgit v1.2.3