This release of tracing-core
introduces a new DefaultCallsite
type, which
can be used by instrumentation crates rather than implementing their own
callsite types. Using DefaultCallsite
may offer reduced overhead from callsite
registration.
Added
DefaultCallsite
, a pre-writtenCallsite
implementation for use in
instrumentation crates (#2083)ValueSet::len
andRecord::len
methods returning the number of fields in a
ValueSet
orRecord
(#2152)
Changed
- Replaced
lazy_static
dependency withonce_cell
(#2147)
Documented
Thanks to new contributors @jamesmunns and @james7132 for contributing to this
release!