diff --git a/src/bin/busd.rs b/src/bin/busd.rs index bcc593f..b2ebe3b 100644 --- a/src/bin/busd.rs +++ b/src/bin/busd.rs @@ -66,7 +66,7 @@ async fn main() -> Result<()> { } else { PathBuf::from("/usr/share/dbus-1/session.conf") }; - eprintln!("reading configuration file {} ...", config_path.display()); + info!("reading configuration file {} ...", config_path.display()); let config = Config::read_file(&config_path)?; let address = if let Some(address) = args.address { @@ -86,7 +86,7 @@ async fn main() -> Result<()> { } if args.print_address { - println!("{}", bus.address()); + info!("{}", bus.address()); } // FIXME: How to handle this gracefully on Windows?