This release of tracing-core
adds new Value
implementations, including one
for String
, to allow recording &String
as a value without having to call
as_str()
or similar, and for 128-bit integers (i128
and u128
). In
addition, it adds new methods and trait implementations for Subscriber
s.
Added
Value
implementation forString
(#2164)Value
implementation foru128
andi28
(#2166)downcast_ref
andis
methods fordyn Subscriber + Sync
,
dyn Subscriber + Send
, anddyn Subscriber + Send + Sync
(#2160)Subscriber::event_enabled
method to enable filtering based onEvent
field
values (#2008)Subscriber
implementation forBox<S: Subscriber + ?Sized>
and
Arc<S: Subscriber + ?Sized>
(#2161)
Thanks to @jswrenn and @CAD97 for contributing to this release!