This website requires JavaScript.
Explore
Help
Sign In
tokio-rs
/
tokio
Watch
1
Star
0
Fork
0
mirror of
https://github.com/tokio-rs/tokio.git
synced
2026-08-28 00:00:11 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
6a058770e9bd0944acf40fca6b3d5e59c3ca413a
tokio
/
tokio-util
/
src
/
tracing.rs
T
7 lines
124 B
Rust
Raw
Normal View
History
Unescape
Escape
codec: make tracing feature optional for codecs (
#6434
)
2024-03-30 18:20:05 +01:00
macro_rules
!
trace
{
(
$($arg
:
tt
)
*
)
=>
{
#[cfg(feature =
"tracing"
)]
tracing
::
trace!
(
$($arg
)
*
);
};
}
Reference in New Issue
Copy Permalink