tracing-subscriber 0.3.14
·
290 commits
to main
since this release
This release fixes multiple filtering bugs in the Layer implementations for
Option<impl Layer> and Vec<impl Layer>.
Fixed
- layer:
Layer::event_enabledimplementation forOption<impl Layer<S>>
returningfalsewhen theOptionisNone, disabling all events globally
(#2193) - layer:
Layer::max_level_hintimplementation forOption<impl Layer<S>>
incorrectly disabling max level filtering when the option isNone(#2195) - layer:
Layer::max_level_hintimplementation forVec<impl Layer<S>>
returningLevelFilter::ERRORrather thanLevelFilter::OFFwhen theVec
is empty (#2195)
Thanks to @CAD97 and @guswynn for contributing to this release!