Zebra/zebrad/src/components/tracing.rs

14 lines
252 B
Rust

//! Tracing and logging infrastructure for Zebra.
mod component;
mod endpoint;
#[cfg(feature = "flamegraph")]
mod flame;
pub use component::Tracing;
pub use endpoint::TracingEndpoint;
#[cfg(feature = "flamegraph")]
pub use flame::{layer, Grapher};