8 unstable releases (3 breaking)

0.4.0 May 5, 2023
0.3.0 Nov 15, 2022
0.2.3 Aug 9, 2022
0.1.1 Aug 8, 2022

#515 in Debugging

Download history 31/week @ 2023-12-31 12/week @ 2024-01-07 11/week @ 2024-01-14 4/week @ 2024-02-04 18/week @ 2024-02-11 15/week @ 2024-02-18 46/week @ 2024-02-25 18/week @ 2024-03-03 8/week @ 2024-03-10

90 downloads per month
Used in 5 crates (4 directly)

Apache-2.0/MIT

33KB
632 lines

A logging library for lunatic Rust applications.

Why a new logging library?

Current logging solutions in Rust (log, tracing, ...) depend on global static variables that are initialized at the start of the app. This doesn't work in lunatic, where each process gets their own memory space. You would need to re-initialize the logger for each process, and that is not practical.

lunatic-log allows you to run a log subscriber process that collects logging messages from all running processes.

How to use lunatic-log?

Add it as a dependency:

lunatic-log = "0.2"

In your code:

use lunatic_log::{info, subscriber::fmt::FmtSubscriber, LevelFilter};

fn main() {
    // Initialize subscriber
    lunatic_log::init(FmtSubscriber::new(LevelFilter::Info).pretty());

    // Log message
    info!("Hello, {}", "World");

    // Wait for events to propagate and display before exiting app
    lunatic::sleep(std::time::Duration::from_millis(50));
}

License

Licensed under either of

at your option.

Dependencies

~4MB
~71K SLoC