tracing-log 0.2.0
github-actions
released this
25 Oct 17:03
·
586 commits
to master
since this release
This release contains two breaking changes: the removal of the env_logger
and trace_logger
features. Below are the suggested migration paths:
env_logger
: users should usetracing_subscriber::fmt::Subscriber
ortracing_subscriber::fmt::Layer
with theTargets
or
EnvFilter
filters instead.trace_logger
: users should use thetracing
crate's
"log" feature flag instead.
Breaking Changes
- Remove deprecated
env_logger
feature. This removes the dependency
on the unmaintainedatty
crate, resolving the security advisory
GHSA-g98v-hv3f-hcfr/RUSTSEC-2021-0145. (#2771) - Remove deprecated
trace_logger
feature. (#2771)