tracing_human_layer/
lib.rs

1//! [tracing_subscriber::Layer]: tracing_subscriber::Layer
2//! [tracing]: tracing
3//! [textwrap-options]: HumanLayer::with_textwrap_options
4//! [styles]: HumanLayer::with_style_provider
5//! [disable-color]: HumanLayer::with_color_output
6#![doc = include_str!("../README.md")]
7#![deny(missing_docs)]
8
9pub use layer::HumanLayer;
10pub use style::LayerStyles;
11pub use style::ProvideStyle;
12pub use style::Style;
13pub use textwrap::TextWrapOptionsOwned;
14
15pub(crate) use color::ShouldColor;
16pub(crate) use event::HumanEvent;
17pub(crate) use fields::HumanFields;
18pub(crate) use span_fields::StyledSpanFields;
19pub(crate) use span_info::SpanInfo;
20
21mod color;
22mod event;
23mod fields;
24mod layer;
25mod span_fields;
26mod span_info;
27mod style;
28mod textwrap;