pavex_tracing/
lib.rs

1//! The official integration between [`tracing`] and the [Pavex] framework.
2//!
3//! [`tracing`]:https://docs.rs/tracing/0.1.40/tracing
4//! [Pavex]: https://pavex.dev
5pub mod fields;
6mod mw;
7mod root_span;
8
9pub use mw::{LOGGER, logger};
10pub use root_span::RootSpan;