61 releases

new 0.1.62 Dec 2, 2024
0.1.61 Sep 23, 2024
0.1.59 Jun 26, 2024
0.1.54 Feb 6, 2024
0.1.21 Nov 26, 2022

#391 in Operating systems

Download history 110/week @ 2024-08-17 162/week @ 2024-08-24 61/week @ 2024-08-31 65/week @ 2024-09-07 78/week @ 2024-09-14 628/week @ 2024-09-21 219/week @ 2024-09-28 160/week @ 2024-10-05 138/week @ 2024-10-12 87/week @ 2024-10-19 72/week @ 2024-10-26 159/week @ 2024-11-02 67/week @ 2024-11-09 129/week @ 2024-11-16 55/week @ 2024-11-23 249/week @ 2024-11-30

525 downloads per month
Used in 8 crates (7 directly)

MIT/Apache

255KB
5.5K SLoC

Xous API: Log

API calls to access the Xous logging service. Provides glue between the log crate, the Xous kernel and the hardware.

Every process that relies on the logging service should call xous_api_log::init_wait() before using any log calls.

Below is a minimal example of how to use the logging service.

fn main() -> ! {
    xous_api_log::init_wait().unwrap();
    log::set_max_level(log::LevelFilter::Info);
    log::info!("my PID is {}", xous::process::id());

    let timeout = std::time::Duration::from_millis(1000);
    let mut count = 0;
    loop {
        log::info!("test loop {}", count);
        count += 1;
        std::thread::sleep(timeout);
    }
}

Dependencies

~3.5MB
~79K SLoC