Closed
Description
Bug Report
Version
tracing-subscriber v0.3.7
Crates
tracing-subscriber
Description
tracing_subscriber::layer::Filter
is implemented for most various filter-like things I can think of, including LevelFilter
, Targets
, FilterFn
, DynFilterFn
, and the new combinators. But what is notably missing from this list is EnvFilter
. I can apply a filter on top of EnvFilter
using <EnvFilter as Layer>::with_filter()
, but I can't apply an EnvFilter
on top of an existing filter. This is a weird limitation and feels like a simple oversight.