3 releases

new 0.1.2 May 5, 2025
0.1.1 Feb 3, 2025
0.1.0 Oct 26, 2023

#528 in Debugging

Download history 81/week @ 2025-01-29 27/week @ 2025-02-05 22/week @ 2025-02-12 1/week @ 2025-02-19 98/week @ 2025-04-30

98 downloads per month

MIT/Apache

50KB
545 lines

logcontrol-log

Crates.io docs.rs

log implementation for the logcontrol interface.

Usage

$ cargo add logcontrol-log
use std::error::Error;

use logcontrol_log::{LogController, LogFactory};
use logcontrol_zbus::ConnectionBuilderExt;
use zbus::ConnectionBuilder;

struct Factory;

impl LogFactory for Factory {
    fn create_console_log(&self) -> Result<Box<dyn log::Log>, logcontrol::LogControl1Error> {
        Ok(Box::new(env_logger::Builder::from_default_env().build()))
    }
}

#[async_std::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let control = LogController::install_auto(Factory, log::Level::Info)?;
    let _conn = ConnectionBuilder::session()?
        .name("de.swsnr.logcontrol.TracingServerExample")?
        .serve_log_control(logcontrol_zbus::LogControl1::new(control))?
        .build()
        .await?;

    loop {
        // Service event loop
    }
}

Dependencies

~2–10MB
~125K SLoC