Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
016af5f54368f9a72684034ed52cc01d21dfd3d6
/
.
/
crates
/
tokio-util
/
src
/
tracing.rs
blob: e1e9ed0827fb8de546ab07371d9e3e99423f3621 [
file
] [
log
] [
blame
]
macro_rules
!
trace
{
(
$
(
$arg
:
tt
)*)
=>
{
#[
cfg
(
feature
=
"tracing"
)]
tracing
::
trace
!(
$
(
$arg
)*);
};
}