2 releases

0.1.1 Feb 3, 2025
0.1.0 Oct 26, 2023

#927 in Debugging

Download history 9/week @ 2024-12-06 1/week @ 2024-12-13 95/week @ 2025-01-31 15/week @ 2025-02-07 11/week @ 2025-02-14

121 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

~1.6–10MB
~119K SLoC