Releases: tokio-rs/tracing
Releases · tokio-rs/tracing
tracing-core 0.1.20
This release adds support for f64
as one of the tracing-core
primitive field values, allowing floating-point values to be recorded as
typed values rather than with fmt::Debug
. Additionally, it adds
NoSubscriber
, a Subscriber
implementation that does nothing.
Added
- subscriber:
NoSubscriber
, a no-opSubscriber
implementation
(#1549) - field: Added
Visit::record_f64
and support for recording
floating-point values (#1507)
Thanks to new contributors @jsgf and @maxburke for contributing to this
release!
tracing-subscriber 0.2.14
0.2.14 (October 22, 2020)
Fixed
- registry: Fixed
Registry::new
allocating an excessively large amount of
memory, most of which would never be used (#1064)
Changed
tracing-core 0.1.17
tracing-subscriber 0.2.9
Tracing 0.1.17
Changed
- log: Moved verbose span enter/exit log records to
"tracing::span::active" target, allowing them to be filtered
separately (#833) - log: All span lifecycle log records without fields now have the
Trace
log filter, to guard againstlog
users enabling them by
default with blanket level filtering (#833)
Fixed
- log/macros: Fixed missing implicit imports of the
tracing::field::debug
andtracing::field::display
functions inside
the macros when the "log" feature is enabled (#835)