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-27 00:00:12 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
9271e3ed05928eafbeed9dd31d93aebaa49d2aad
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