From 1f9d177f4d3f7c3d0a639ebd24f9e72cc2603f2e Mon Sep 17 00:00:00 2001 From: Ron Waldon-Howe Date: Mon, 9 Dec 2024 21:29:18 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20=20Use=20the=20"tracing"=20crate?= =?UTF-8?q?=20for=20logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/bin/busd.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/bin/busd.rs b/src/bin/busd.rs index bcc593f..06d1bcc 100644 --- a/src/bin/busd.rs +++ b/src/bin/busd.rs @@ -10,9 +10,7 @@ use anyhow::Result; use clap::Parser; #[cfg(unix)] use tokio::{select, signal::unix::SignalKind}; -use tracing::error; -#[cfg(unix)] -use tracing::{info, warn}; +use tracing::{error, info, warn}; /// A simple D-Bus broker. #[derive(Parser, Debug)] @@ -66,7 +64,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 +84,7 @@ async fn main() -> Result<()> { } if args.print_address { - println!("{}", bus.address()); + info!("{}", bus.address()); } // FIXME: How to handle this gracefully on Windows?