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:
= "0.2"
In your code:
use ;
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.