stratify 1.1.0

Layered configuration and structured logging for Rust services: pluggable sources, priority merging, typed access, and a tracing facade
Documentation
1
2
3
4
5
6
7
8
9
10
use tracing_subscriber::filter::EnvFilter;
use tracing_subscriber::reload::Handle as ReloadHandleInner;
use tracing_subscriber::reload::Layer as ReloadLayer;
use tracing_subscriber::Registry;

/// Type alias for the reload handle.
pub type ReloadHandle = ReloadHandleInner<EnvFilter, Registry>;

/// Type alias for the reload layer.
pub type ReloadFilterLayer = ReloadLayer<EnvFilter, Registry>;