Crates.io | lunatic-log |
lib.rs | lunatic-log |
version | 0.4.0 |
source | src |
created_at | 2022-08-08 13:50:16.150542 |
updated_at | 2023-05-05 09:14:00.362459 |
description | A logging library for lunatic Rust applications |
homepage | |
repository | https://github.com/lunatic-solutions/lunatic-log-rs |
max_upload_size | |
id | 640848 |
size | 67,005 |
A logging library for lunatic Rust applications.
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.
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));
}
Licensed under either of
at your option.