This release adds a new #[instrument(skip_all)]
option to skip recording all
arguments to an instrumented function as fields. Additionally, it adds support
for recording arguments that are tracing
primitive types as typed values,
rather than as fmt::Debug
.
Added
- add
skip_all
option to#[instrument]
(#1548) - record primitive types as primitive values rather than as
fmt::Debug
(#1378) - added support for
f64
s as typed values (#1522)
Thanks to @Folyd and @jsgf for contributing to this release!