Skip to content

Commit

Permalink
πŸ”Š Use the "tracing" crate for logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jokeyrhyme committed Dec 9, 2024
1 parent a7af99b commit 1f9d177
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/bin/busd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down Expand Up @@ -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 {
Expand All @@ -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?
Expand Down

0 comments on commit 1f9d177

Please sign in to comment.