aboutsummaryrefslogtreecommitdiff
path: root/src/garage/cli/init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/garage/cli/init.rs')
-rw-r--r--src/garage/cli/init.rs8
1 files changed, 5 insertions, 3 deletions
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 {