1
2
3
4
5
6
7
8
//! An asynchronous/buffered log event pipeline from producers to a single dispatching consumer.
//! Currently based on `std::sync::mpsc`, but highly likely this will change.

pub mod ambient;
mod async;
pub mod builder;
pub mod chain;
pub mod reference;