fibre_logging 0.5.8

A flexible, multimode sync/async logging library that unifies the log and tracing ecosystems, driven by external configuration and featuring powerful debug instrumentation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Contains custom tracing subscriber Layer implementations.

pub(super) mod actor; 
mod dispatch; 
mod log_handler;
mod processor;
pub mod visitor;

// Re-exports
pub use dispatch::DispatchLayer;
pub(crate) use log_handler::LogHandler;
pub(crate) use processor::EventProcessor;