#![deny(warnings)]
#![no_implicit_prelude]
extern crate tracing;
#[cfg(target_arch = "wasm32")]
extern crate wasm_bindgen_test;
struct Disp {
val: u64,
}
impl ::std::fmt::Display for Disp {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
::std::write!(f, "Disp.val={val}", val = self.val)
}
}
struct Deb {
val: u64,
}
impl ::std::fmt::Debug for Deb {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
f.debug_struct("Deb").field("val", &self.val).finish()
}
}
struct Sub {
field: u64,
}
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)]
#[test]
fn debug() {
const CONST_VAR: &str = "const-field";
let var = true;
let sub = Sub { field: 4, };
let disp = Disp { val: 61, };
let deb = Deb { val: 102, };
tracing::debug!(ident = 3); tracing::debug!(foo = true, ident = 3); tracing::debug!(ident = 3, qux = 3); tracing::debug!(foo = true, ident = 3, qux = 3); tracing::debug!(ident = 3, "msg without args"); tracing::debug!(foo = true, ident = 3, "msg without args"); tracing::debug!(ident = 3, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = 3, qux = 3, "msg without args"); tracing::debug!({ ident = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = 3 }, "msg without args"); tracing::debug!({ ident = 3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = 3, qux = 3 }, "msg without args"); tracing::debug!(ident = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = 3, "msg with arg: {:?}", 56); tracing::debug!(ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = false); tracing::debug!(foo = true, ident = false); tracing::debug!(ident = false, qux = 3); tracing::debug!(foo = true, ident = false, qux = 3); tracing::debug!(ident = false, "msg without args"); tracing::debug!(foo = true, ident = false, "msg without args"); tracing::debug!(ident = false, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = false, qux = 3, "msg without args"); tracing::debug!({ ident = false }, "msg without args"); tracing::debug!({ foo = true, ident = false }, "msg without args"); tracing::debug!({ ident = false, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = false, qux = 3 }, "msg without args"); tracing::debug!(ident = false, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = false, "msg with arg: {:?}", 56); tracing::debug!(ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = false }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = false }, "msg with arg: {:?}", 56); tracing::debug!({ ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = ?3); tracing::debug!(foo = true, ident = ?3); tracing::debug!(ident = ?3, qux = 3); tracing::debug!(foo = true, ident = ?3, qux = 3); tracing::debug!(ident = ?3, "msg without args"); tracing::debug!(foo = true, ident = ?3, "msg without args"); tracing::debug!(ident = ?3, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = ?3, qux = 3, "msg without args"); tracing::debug!({ ident = ?3 }, "msg without args"); tracing::debug!({ foo = true, ident = ?3 }, "msg without args"); tracing::debug!({ ident = ?3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = ?3, qux = 3 }, "msg without args"); tracing::debug!(ident = ?3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = ?3, "msg with arg: {:?}", 56); tracing::debug!(ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = %3); tracing::debug!(foo = true, ident = %3); tracing::debug!(ident = %3, qux = 3); tracing::debug!(foo = true, ident = %3, qux = 3); tracing::debug!(ident = %3, "msg without args"); tracing::debug!(foo = true, ident = %3, "msg without args"); tracing::debug!(ident = %3, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = %3, qux = 3, "msg without args"); tracing::debug!({ ident = %3 }, "msg without args"); tracing::debug!({ foo = true, ident = %3 }, "msg without args"); tracing::debug!({ ident = %3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = %3, qux = 3 }, "msg without args"); tracing::debug!(ident = %3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = %3, "msg with arg: {:?}", 56); tracing::debug!(ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = ?deb); tracing::debug!(foo = true, ident = ?deb); tracing::debug!(ident = ?deb, qux = 3); tracing::debug!(foo = true, ident = ?deb, qux = 3); tracing::debug!(ident = ?deb, "msg without args"); tracing::debug!(foo = true, ident = ?deb, "msg without args"); tracing::debug!(ident = ?deb, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = ?deb, qux = 3, "msg without args"); tracing::debug!({ ident = ?deb }, "msg without args"); tracing::debug!({ foo = true, ident = ?deb }, "msg without args"); tracing::debug!({ ident = ?deb, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = ?deb, qux = 3 }, "msg without args"); tracing::debug!(ident = ?deb, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = ?deb, "msg with arg: {:?}", 56); tracing::debug!(ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = %disp); tracing::debug!(foo = true, ident = %disp); tracing::debug!(ident = %disp, qux = 3); tracing::debug!(foo = true, ident = %disp, qux = 3); tracing::debug!(ident = %disp, "msg without args"); tracing::debug!(foo = true, ident = %disp, "msg without args"); tracing::debug!(ident = %disp, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = %disp, qux = 3, "msg without args"); tracing::debug!({ ident = %disp }, "msg without args"); tracing::debug!({ foo = true, ident = %disp }, "msg without args"); tracing::debug!({ ident = %disp, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = %disp, qux = 3 }, "msg without args"); tracing::debug!(ident = %disp, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = %disp, "msg with arg: {:?}", 56); tracing::debug!(ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = ?sub.field); tracing::debug!(foo = true, ident = ?sub.field); tracing::debug!(ident = ?sub.field, qux = 3); tracing::debug!(foo = true, ident = ?sub.field, qux = 3); tracing::debug!(ident = ?sub.field, "msg without args"); tracing::debug!(foo = true, ident = ?sub.field, "msg without args"); tracing::debug!(ident = ?sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = ?sub.field, qux = 3, "msg without args"); tracing::debug!({ ident = ?sub.field }, "msg without args"); tracing::debug!({ foo = true, ident = ?sub.field }, "msg without args"); tracing::debug!({ ident = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!(ident = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = %sub.field); tracing::debug!(foo = true, ident = %sub.field); tracing::debug!(ident = %sub.field, qux = 3); tracing::debug!(foo = true, ident = %sub.field, qux = 3); tracing::debug!(ident = %sub.field, "msg without args"); tracing::debug!(foo = true, ident = %sub.field, "msg without args"); tracing::debug!(ident = %sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = %sub.field, qux = 3, "msg without args"); tracing::debug!({ ident = %sub.field }, "msg without args"); tracing::debug!({ foo = true, ident = %sub.field }, "msg without args"); tracing::debug!({ ident = %sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = %sub.field, qux = 3 }, "msg without args"); tracing::debug!(ident = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = debug(&deb)); tracing::debug!(foo = true, ident = debug(&deb)); tracing::debug!(ident = debug(&deb), qux = 3); tracing::debug!(foo = true, ident = debug(&deb), qux = 3); tracing::debug!(ident = debug(&deb), "msg without args"); tracing::debug!(foo = true, ident = debug(&deb), "msg without args"); tracing::debug!(ident = debug(&deb), qux = 3, "msg without args"); tracing::debug!(foo = true, ident = debug(&deb), qux = 3, "msg without args"); tracing::debug!({ ident = debug(&deb) }, "msg without args"); tracing::debug!({ foo = true, ident = debug(&deb) }, "msg without args"); tracing::debug!({ ident = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!(ident = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = display(&disp)); tracing::debug!(foo = true, ident = display(&disp)); tracing::debug!(ident = display(&disp), qux = 3); tracing::debug!(foo = true, ident = display(&disp), qux = 3); tracing::debug!(ident = display(&disp), "msg without args"); tracing::debug!(foo = true, ident = display(&disp), "msg without args"); tracing::debug!(ident = display(&disp), qux = 3, "msg without args"); tracing::debug!(foo = true, ident = display(&disp), qux = 3, "msg without args"); tracing::debug!({ ident = display(&disp) }, "msg without args"); tracing::debug!({ foo = true, ident = display(&disp) }, "msg without args"); tracing::debug!({ ident = display(&disp), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = display(&disp), qux = 3 }, "msg without args"); tracing::debug!(ident = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(ident = tracing::field::Empty); tracing::debug!(foo = true, ident = tracing::field::Empty); tracing::debug!(ident = tracing::field::Empty, qux = 3); tracing::debug!(foo = true, ident = tracing::field::Empty, qux = 3); tracing::debug!(ident = tracing::field::Empty, "msg without args"); tracing::debug!(foo = true, ident = tracing::field::Empty, "msg without args"); tracing::debug!(ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!(foo = true, ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!({ ident = tracing::field::Empty }, "msg without args"); tracing::debug!({ foo = true, ident = tracing::field::Empty }, "msg without args"); tracing::debug!({ ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!(ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = 3); tracing::debug!(foo = true, dotted.ident = 3); tracing::debug!(dotted.ident = 3, qux = 3); tracing::debug!(foo = true, dotted.ident = 3, qux = 3); tracing::debug!(dotted.ident = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = 3, "msg without args"); tracing::debug!(dotted.ident = 3, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = 3, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = 3 }, "msg without args"); tracing::debug!({ dotted.ident = 3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = 3, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = 3, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = false); tracing::debug!(foo = true, dotted.ident = false); tracing::debug!(dotted.ident = false, qux = 3); tracing::debug!(foo = true, dotted.ident = false, qux = 3); tracing::debug!(dotted.ident = false, "msg without args"); tracing::debug!(foo = true, dotted.ident = false, "msg without args"); tracing::debug!(dotted.ident = false, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = false, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = false }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = false }, "msg without args"); tracing::debug!({ dotted.ident = false, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = false, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = false, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = false, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = false }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = false }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = ?3); tracing::debug!(foo = true, dotted.ident = ?3); tracing::debug!(dotted.ident = ?3, qux = 3); tracing::debug!(foo = true, dotted.ident = ?3, qux = 3); tracing::debug!(dotted.ident = ?3, "msg without args"); tracing::debug!(foo = true, dotted.ident = ?3, "msg without args"); tracing::debug!(dotted.ident = ?3, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = ?3, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = ?3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = ?3 }, "msg without args"); tracing::debug!({ dotted.ident = ?3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = ?3, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = ?3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = ?3, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = %3); tracing::debug!(foo = true, dotted.ident = %3); tracing::debug!(dotted.ident = %3, qux = 3); tracing::debug!(foo = true, dotted.ident = %3, qux = 3); tracing::debug!(dotted.ident = %3, "msg without args"); tracing::debug!(foo = true, dotted.ident = %3, "msg without args"); tracing::debug!(dotted.ident = %3, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = %3, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = %3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = %3 }, "msg without args"); tracing::debug!({ dotted.ident = %3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = %3, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = %3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = %3, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = ?deb); tracing::debug!(foo = true, dotted.ident = ?deb); tracing::debug!(dotted.ident = ?deb, qux = 3); tracing::debug!(foo = true, dotted.ident = ?deb, qux = 3); tracing::debug!(dotted.ident = ?deb, "msg without args"); tracing::debug!(foo = true, dotted.ident = ?deb, "msg without args"); tracing::debug!(dotted.ident = ?deb, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = ?deb, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = ?deb }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = ?deb }, "msg without args"); tracing::debug!({ dotted.ident = ?deb, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = ?deb, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = ?deb, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = ?deb, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = %disp); tracing::debug!(foo = true, dotted.ident = %disp); tracing::debug!(dotted.ident = %disp, qux = 3); tracing::debug!(foo = true, dotted.ident = %disp, qux = 3); tracing::debug!(dotted.ident = %disp, "msg without args"); tracing::debug!(foo = true, dotted.ident = %disp, "msg without args"); tracing::debug!(dotted.ident = %disp, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = %disp, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = %disp }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = %disp }, "msg without args"); tracing::debug!({ dotted.ident = %disp, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = %disp, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = %disp, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = %disp, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = ?sub.field); tracing::debug!(foo = true, dotted.ident = ?sub.field); tracing::debug!(dotted.ident = ?sub.field, qux = 3); tracing::debug!(foo = true, dotted.ident = ?sub.field, qux = 3); tracing::debug!(dotted.ident = ?sub.field, "msg without args"); tracing::debug!(foo = true, dotted.ident = ?sub.field, "msg without args"); tracing::debug!(dotted.ident = ?sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = ?sub.field, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = ?sub.field }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = ?sub.field }, "msg without args"); tracing::debug!({ dotted.ident = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = %sub.field); tracing::debug!(foo = true, dotted.ident = %sub.field); tracing::debug!(dotted.ident = %sub.field, qux = 3); tracing::debug!(foo = true, dotted.ident = %sub.field, qux = 3); tracing::debug!(dotted.ident = %sub.field, "msg without args"); tracing::debug!(foo = true, dotted.ident = %sub.field, "msg without args"); tracing::debug!(dotted.ident = %sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = %sub.field, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = %sub.field }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = %sub.field }, "msg without args"); tracing::debug!({ dotted.ident = %sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = %sub.field, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = debug(&deb)); tracing::debug!(foo = true, dotted.ident = debug(&deb)); tracing::debug!(dotted.ident = debug(&deb), qux = 3); tracing::debug!(foo = true, dotted.ident = debug(&deb), qux = 3); tracing::debug!(dotted.ident = debug(&deb), "msg without args"); tracing::debug!(foo = true, dotted.ident = debug(&deb), "msg without args"); tracing::debug!(dotted.ident = debug(&deb), qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = debug(&deb), qux = 3, "msg without args"); tracing::debug!({ dotted.ident = debug(&deb) }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = debug(&deb) }, "msg without args"); tracing::debug!({ dotted.ident = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = display(&disp)); tracing::debug!(foo = true, dotted.ident = display(&disp)); tracing::debug!(dotted.ident = display(&disp), qux = 3); tracing::debug!(foo = true, dotted.ident = display(&disp), qux = 3); tracing::debug!(dotted.ident = display(&disp), "msg without args"); tracing::debug!(foo = true, dotted.ident = display(&disp), "msg without args"); tracing::debug!(dotted.ident = display(&disp), qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = display(&disp), qux = 3, "msg without args"); tracing::debug!({ dotted.ident = display(&disp) }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = display(&disp) }, "msg without args"); tracing::debug!({ dotted.ident = display(&disp), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = display(&disp), qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = tracing::field::Empty); tracing::debug!(foo = true, dotted.ident = tracing::field::Empty); tracing::debug!(dotted.ident = tracing::field::Empty, qux = 3); tracing::debug!(foo = true, dotted.ident = tracing::field::Empty, qux = 3); tracing::debug!(dotted.ident = tracing::field::Empty, "msg without args"); tracing::debug!(foo = true, dotted.ident = tracing::field::Empty, "msg without args"); tracing::debug!(dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!(foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!({ dotted.ident = tracing::field::Empty }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = tracing::field::Empty }, "msg without args"); tracing::debug!({ dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!(dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = 3); tracing::debug!(foo = true, "literal" = 3); tracing::debug!("literal" = 3, qux = 3); tracing::debug!(foo = true, "literal" = 3, qux = 3); tracing::debug!("literal" = 3, "msg without args"); tracing::debug!(foo = true, "literal" = 3, "msg without args"); tracing::debug!("literal" = 3, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = 3, qux = 3, "msg without args"); tracing::debug!({ "literal" = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = 3 }, "msg without args"); tracing::debug!({ "literal" = 3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = 3, qux = 3 }, "msg without args"); tracing::debug!("literal" = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = 3, "msg with arg: {:?}", 56); tracing::debug!("literal" = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = false); tracing::debug!(foo = true, "literal" = false); tracing::debug!("literal" = false, qux = 3); tracing::debug!(foo = true, "literal" = false, qux = 3); tracing::debug!("literal" = false, "msg without args"); tracing::debug!(foo = true, "literal" = false, "msg without args"); tracing::debug!("literal" = false, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = false, qux = 3, "msg without args"); tracing::debug!({ "literal" = false }, "msg without args"); tracing::debug!({ foo = true, "literal" = false }, "msg without args"); tracing::debug!({ "literal" = false, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = false, qux = 3 }, "msg without args"); tracing::debug!("literal" = false, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = false, "msg with arg: {:?}", 56); tracing::debug!("literal" = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = false }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = false }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = ?3); tracing::debug!(foo = true, "literal" = ?3); tracing::debug!("literal" = ?3, qux = 3); tracing::debug!(foo = true, "literal" = ?3, qux = 3); tracing::debug!("literal" = ?3, "msg without args"); tracing::debug!(foo = true, "literal" = ?3, "msg without args"); tracing::debug!("literal" = ?3, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = ?3, qux = 3, "msg without args"); tracing::debug!({ "literal" = ?3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = ?3 }, "msg without args"); tracing::debug!({ "literal" = ?3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = ?3, qux = 3 }, "msg without args"); tracing::debug!("literal" = ?3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = ?3, "msg with arg: {:?}", 56); tracing::debug!("literal" = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = %3); tracing::debug!(foo = true, "literal" = %3); tracing::debug!("literal" = %3, qux = 3); tracing::debug!(foo = true, "literal" = %3, qux = 3); tracing::debug!("literal" = %3, "msg without args"); tracing::debug!(foo = true, "literal" = %3, "msg without args"); tracing::debug!("literal" = %3, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = %3, qux = 3, "msg without args"); tracing::debug!({ "literal" = %3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = %3 }, "msg without args"); tracing::debug!({ "literal" = %3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = %3, qux = 3 }, "msg without args"); tracing::debug!("literal" = %3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = %3, "msg with arg: {:?}", 56); tracing::debug!("literal" = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = ?deb); tracing::debug!(foo = true, "literal" = ?deb); tracing::debug!("literal" = ?deb, qux = 3); tracing::debug!(foo = true, "literal" = ?deb, qux = 3); tracing::debug!("literal" = ?deb, "msg without args"); tracing::debug!(foo = true, "literal" = ?deb, "msg without args"); tracing::debug!("literal" = ?deb, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = ?deb, qux = 3, "msg without args"); tracing::debug!({ "literal" = ?deb }, "msg without args"); tracing::debug!({ foo = true, "literal" = ?deb }, "msg without args"); tracing::debug!({ "literal" = ?deb, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = ?deb, qux = 3 }, "msg without args"); tracing::debug!("literal" = ?deb, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = ?deb, "msg with arg: {:?}", 56); tracing::debug!("literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = %disp); tracing::debug!(foo = true, "literal" = %disp); tracing::debug!("literal" = %disp, qux = 3); tracing::debug!(foo = true, "literal" = %disp, qux = 3); tracing::debug!("literal" = %disp, "msg without args"); tracing::debug!(foo = true, "literal" = %disp, "msg without args"); tracing::debug!("literal" = %disp, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = %disp, qux = 3, "msg without args"); tracing::debug!({ "literal" = %disp }, "msg without args"); tracing::debug!({ foo = true, "literal" = %disp }, "msg without args"); tracing::debug!({ "literal" = %disp, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = %disp, qux = 3 }, "msg without args"); tracing::debug!("literal" = %disp, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = %disp, "msg with arg: {:?}", 56); tracing::debug!("literal" = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = ?sub.field); tracing::debug!(foo = true, "literal" = ?sub.field); tracing::debug!("literal" = ?sub.field, qux = 3); tracing::debug!(foo = true, "literal" = ?sub.field, qux = 3); tracing::debug!("literal" = ?sub.field, "msg without args"); tracing::debug!(foo = true, "literal" = ?sub.field, "msg without args"); tracing::debug!("literal" = ?sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = ?sub.field, qux = 3, "msg without args"); tracing::debug!({ "literal" = ?sub.field }, "msg without args"); tracing::debug!({ foo = true, "literal" = ?sub.field }, "msg without args"); tracing::debug!({ "literal" = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!("literal" = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!("literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = %sub.field); tracing::debug!(foo = true, "literal" = %sub.field); tracing::debug!("literal" = %sub.field, qux = 3); tracing::debug!(foo = true, "literal" = %sub.field, qux = 3); tracing::debug!("literal" = %sub.field, "msg without args"); tracing::debug!(foo = true, "literal" = %sub.field, "msg without args"); tracing::debug!("literal" = %sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = %sub.field, qux = 3, "msg without args"); tracing::debug!({ "literal" = %sub.field }, "msg without args"); tracing::debug!({ foo = true, "literal" = %sub.field }, "msg without args"); tracing::debug!({ "literal" = %sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = %sub.field, qux = 3 }, "msg without args"); tracing::debug!("literal" = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = %sub.field, "msg with arg: {:?}", 56); tracing::debug!("literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = debug(&deb)); tracing::debug!(foo = true, "literal" = debug(&deb)); tracing::debug!("literal" = debug(&deb), qux = 3); tracing::debug!(foo = true, "literal" = debug(&deb), qux = 3); tracing::debug!("literal" = debug(&deb), "msg without args"); tracing::debug!(foo = true, "literal" = debug(&deb), "msg without args"); tracing::debug!("literal" = debug(&deb), qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = debug(&deb), qux = 3, "msg without args"); tracing::debug!({ "literal" = debug(&deb) }, "msg without args"); tracing::debug!({ foo = true, "literal" = debug(&deb) }, "msg without args"); tracing::debug!({ "literal" = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!("literal" = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!("literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = display(&disp)); tracing::debug!(foo = true, "literal" = display(&disp)); tracing::debug!("literal" = display(&disp), qux = 3); tracing::debug!(foo = true, "literal" = display(&disp), qux = 3); tracing::debug!("literal" = display(&disp), "msg without args"); tracing::debug!(foo = true, "literal" = display(&disp), "msg without args"); tracing::debug!("literal" = display(&disp), qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = display(&disp), qux = 3, "msg without args"); tracing::debug!({ "literal" = display(&disp) }, "msg without args"); tracing::debug!({ foo = true, "literal" = display(&disp) }, "msg without args"); tracing::debug!({ "literal" = display(&disp), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = display(&disp), qux = 3 }, "msg without args"); tracing::debug!("literal" = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = display(&disp), "msg with arg: {:?}", 56); tracing::debug!("literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!("literal" = tracing::field::Empty); tracing::debug!(foo = true, "literal" = tracing::field::Empty); tracing::debug!("literal" = tracing::field::Empty, qux = 3); tracing::debug!(foo = true, "literal" = tracing::field::Empty, qux = 3); tracing::debug!("literal" = tracing::field::Empty, "msg without args"); tracing::debug!(foo = true, "literal" = tracing::field::Empty, "msg without args"); tracing::debug!("literal" = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!(foo = true, "literal" = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!({ "literal" = tracing::field::Empty }, "msg without args"); tracing::debug!({ foo = true, "literal" = tracing::field::Empty }, "msg without args"); tracing::debug!({ "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!("literal" = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!("literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = 3); tracing::debug!(foo = true, { CONST_VAR } = 3); tracing::debug!({ CONST_VAR } = 3, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = 3, qux = 3); tracing::debug!({ CONST_VAR } = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = 3, "msg without args"); tracing::debug!({ CONST_VAR } = 3, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = 3, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = 3 }, "msg without args"); tracing::debug!({ { CONST_VAR } = 3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = 3, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = 3, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = false); tracing::debug!(foo = true, { CONST_VAR } = false); tracing::debug!({ CONST_VAR } = false, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = false, qux = 3); tracing::debug!({ CONST_VAR } = false, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = false, "msg without args"); tracing::debug!({ CONST_VAR } = false, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = false, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = false }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = false }, "msg without args"); tracing::debug!({ { CONST_VAR } = false, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = false, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = false, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = false, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = false }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = false }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = ?3); tracing::debug!(foo = true, { CONST_VAR } = ?3); tracing::debug!({ CONST_VAR } = ?3, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = ?3, qux = 3); tracing::debug!({ CONST_VAR } = ?3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = ?3, "msg without args"); tracing::debug!({ CONST_VAR } = ?3, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = ?3, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = ?3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = ?3 }, "msg without args"); tracing::debug!({ { CONST_VAR } = ?3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = ?3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = %3); tracing::debug!(foo = true, { CONST_VAR } = %3); tracing::debug!({ CONST_VAR } = %3, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = %3, qux = 3); tracing::debug!({ CONST_VAR } = %3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = %3, "msg without args"); tracing::debug!({ CONST_VAR } = %3, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = %3, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = %3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = %3 }, "msg without args"); tracing::debug!({ { CONST_VAR } = %3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = %3, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = %3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = %3, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = ?deb); tracing::debug!(foo = true, { CONST_VAR } = ?deb); tracing::debug!({ CONST_VAR } = ?deb, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = ?deb, qux = 3); tracing::debug!({ CONST_VAR } = ?deb, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = ?deb, "msg without args"); tracing::debug!({ CONST_VAR } = ?deb, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = ?deb, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = ?deb }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = ?deb }, "msg without args"); tracing::debug!({ { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = ?deb, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = %disp); tracing::debug!(foo = true, { CONST_VAR } = %disp); tracing::debug!({ CONST_VAR } = %disp, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = %disp, qux = 3); tracing::debug!({ CONST_VAR } = %disp, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = %disp, "msg without args"); tracing::debug!({ CONST_VAR } = %disp, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = %disp, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = %disp }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = %disp }, "msg without args"); tracing::debug!({ { CONST_VAR } = %disp, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = %disp, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = ?sub.field); tracing::debug!(foo = true, { CONST_VAR } = ?sub.field); tracing::debug!({ CONST_VAR } = ?sub.field, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = ?sub.field, qux = 3); tracing::debug!({ CONST_VAR } = ?sub.field, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = ?sub.field, "msg without args"); tracing::debug!({ CONST_VAR } = ?sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = ?sub.field }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = ?sub.field }, "msg without args"); tracing::debug!({ { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = %sub.field); tracing::debug!(foo = true, { CONST_VAR } = %sub.field); tracing::debug!({ CONST_VAR } = %sub.field, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = %sub.field, qux = 3); tracing::debug!({ CONST_VAR } = %sub.field, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = %sub.field, "msg without args"); tracing::debug!({ CONST_VAR } = %sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = %sub.field }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = %sub.field }, "msg without args"); tracing::debug!({ { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = debug(&deb)); tracing::debug!(foo = true, { CONST_VAR } = debug(&deb)); tracing::debug!({ CONST_VAR } = debug(&deb), qux = 3); tracing::debug!(foo = true, { CONST_VAR } = debug(&deb), qux = 3); tracing::debug!({ CONST_VAR } = debug(&deb), "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = debug(&deb), "msg without args"); tracing::debug!({ CONST_VAR } = debug(&deb), qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = debug(&deb) }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = debug(&deb) }, "msg without args"); tracing::debug!({ { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = display(&disp)); tracing::debug!(foo = true, { CONST_VAR } = display(&disp)); tracing::debug!({ CONST_VAR } = display(&disp), qux = 3); tracing::debug!(foo = true, { CONST_VAR } = display(&disp), qux = 3); tracing::debug!({ CONST_VAR } = display(&disp), "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = display(&disp), "msg without args"); tracing::debug!({ CONST_VAR } = display(&disp), qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = display(&disp) }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = display(&disp) }, "msg without args"); tracing::debug!({ { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = tracing::field::Empty); tracing::debug!(foo = true, { CONST_VAR } = tracing::field::Empty); tracing::debug!({ CONST_VAR } = tracing::field::Empty, qux = 3); tracing::debug!(foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3); tracing::debug!({ CONST_VAR } = tracing::field::Empty, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = tracing::field::Empty, "msg without args"); tracing::debug!({ CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!(foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!({ { CONST_VAR } = tracing::field::Empty }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = tracing::field::Empty }, "msg without args"); tracing::debug!({ { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!({ CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!({ CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = 3); tracing::debug!(foo = true, r#type = 3); tracing::debug!(r#type = 3, qux = 3); tracing::debug!(foo = true, r#type = 3, qux = 3); tracing::debug!(r#type = 3, "msg without args"); tracing::debug!(foo = true, r#type = 3, "msg without args"); tracing::debug!(r#type = 3, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = 3, qux = 3, "msg without args"); tracing::debug!({ r#type = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = 3 }, "msg without args"); tracing::debug!({ r#type = 3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = 3, qux = 3 }, "msg without args"); tracing::debug!(r#type = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = 3, "msg with arg: {:?}", 56); tracing::debug!(r#type = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = 3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = false); tracing::debug!(foo = true, r#type = false); tracing::debug!(r#type = false, qux = 3); tracing::debug!(foo = true, r#type = false, qux = 3); tracing::debug!(r#type = false, "msg without args"); tracing::debug!(foo = true, r#type = false, "msg without args"); tracing::debug!(r#type = false, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = false, qux = 3, "msg without args"); tracing::debug!({ r#type = false }, "msg without args"); tracing::debug!({ foo = true, r#type = false }, "msg without args"); tracing::debug!({ r#type = false, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = false, qux = 3 }, "msg without args"); tracing::debug!(r#type = false, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = false, "msg with arg: {:?}", 56); tracing::debug!(r#type = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = false, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = false }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = false }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = ?3); tracing::debug!(foo = true, r#type = ?3); tracing::debug!(r#type = ?3, qux = 3); tracing::debug!(foo = true, r#type = ?3, qux = 3); tracing::debug!(r#type = ?3, "msg without args"); tracing::debug!(foo = true, r#type = ?3, "msg without args"); tracing::debug!(r#type = ?3, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = ?3, qux = 3, "msg without args"); tracing::debug!({ r#type = ?3 }, "msg without args"); tracing::debug!({ foo = true, r#type = ?3 }, "msg without args"); tracing::debug!({ r#type = ?3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = ?3, qux = 3 }, "msg without args"); tracing::debug!(r#type = ?3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = ?3, "msg with arg: {:?}", 56); tracing::debug!(r#type = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = ?3 }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = %3); tracing::debug!(foo = true, r#type = %3); tracing::debug!(r#type = %3, qux = 3); tracing::debug!(foo = true, r#type = %3, qux = 3); tracing::debug!(r#type = %3, "msg without args"); tracing::debug!(foo = true, r#type = %3, "msg without args"); tracing::debug!(r#type = %3, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = %3, qux = 3, "msg without args"); tracing::debug!({ r#type = %3 }, "msg without args"); tracing::debug!({ foo = true, r#type = %3 }, "msg without args"); tracing::debug!({ r#type = %3, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = %3, qux = 3 }, "msg without args"); tracing::debug!(r#type = %3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = %3, "msg with arg: {:?}", 56); tracing::debug!(r#type = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = %3, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = %3 }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = ?deb); tracing::debug!(foo = true, r#type = ?deb); tracing::debug!(r#type = ?deb, qux = 3); tracing::debug!(foo = true, r#type = ?deb, qux = 3); tracing::debug!(r#type = ?deb, "msg without args"); tracing::debug!(foo = true, r#type = ?deb, "msg without args"); tracing::debug!(r#type = ?deb, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = ?deb, qux = 3, "msg without args"); tracing::debug!({ r#type = ?deb }, "msg without args"); tracing::debug!({ foo = true, r#type = ?deb }, "msg without args"); tracing::debug!({ r#type = ?deb, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = ?deb, qux = 3 }, "msg without args"); tracing::debug!(r#type = ?deb, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = ?deb, "msg with arg: {:?}", 56); tracing::debug!(r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = %disp); tracing::debug!(foo = true, r#type = %disp); tracing::debug!(r#type = %disp, qux = 3); tracing::debug!(foo = true, r#type = %disp, qux = 3); tracing::debug!(r#type = %disp, "msg without args"); tracing::debug!(foo = true, r#type = %disp, "msg without args"); tracing::debug!(r#type = %disp, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = %disp, qux = 3, "msg without args"); tracing::debug!({ r#type = %disp }, "msg without args"); tracing::debug!({ foo = true, r#type = %disp }, "msg without args"); tracing::debug!({ r#type = %disp, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = %disp, qux = 3 }, "msg without args"); tracing::debug!(r#type = %disp, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = %disp, "msg with arg: {:?}", 56); tracing::debug!(r#type = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = %disp }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = ?sub.field); tracing::debug!(foo = true, r#type = ?sub.field); tracing::debug!(r#type = ?sub.field, qux = 3); tracing::debug!(foo = true, r#type = ?sub.field, qux = 3); tracing::debug!(r#type = ?sub.field, "msg without args"); tracing::debug!(foo = true, r#type = ?sub.field, "msg without args"); tracing::debug!(r#type = ?sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = ?sub.field, qux = 3, "msg without args"); tracing::debug!({ r#type = ?sub.field }, "msg without args"); tracing::debug!({ foo = true, r#type = ?sub.field }, "msg without args"); tracing::debug!({ r#type = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = ?sub.field, qux = 3 }, "msg without args"); tracing::debug!(r#type = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = %sub.field); tracing::debug!(foo = true, r#type = %sub.field); tracing::debug!(r#type = %sub.field, qux = 3); tracing::debug!(foo = true, r#type = %sub.field, qux = 3); tracing::debug!(r#type = %sub.field, "msg without args"); tracing::debug!(foo = true, r#type = %sub.field, "msg without args"); tracing::debug!(r#type = %sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = %sub.field, qux = 3, "msg without args"); tracing::debug!({ r#type = %sub.field }, "msg without args"); tracing::debug!({ foo = true, r#type = %sub.field }, "msg without args"); tracing::debug!({ r#type = %sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = %sub.field, qux = 3 }, "msg without args"); tracing::debug!(r#type = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = %sub.field, "msg with arg: {:?}", 56); tracing::debug!(r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = debug(&deb)); tracing::debug!(foo = true, r#type = debug(&deb)); tracing::debug!(r#type = debug(&deb), qux = 3); tracing::debug!(foo = true, r#type = debug(&deb), qux = 3); tracing::debug!(r#type = debug(&deb), "msg without args"); tracing::debug!(foo = true, r#type = debug(&deb), "msg without args"); tracing::debug!(r#type = debug(&deb), qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = debug(&deb), qux = 3, "msg without args"); tracing::debug!({ r#type = debug(&deb) }, "msg without args"); tracing::debug!({ foo = true, r#type = debug(&deb) }, "msg without args"); tracing::debug!({ r#type = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = debug(&deb), qux = 3 }, "msg without args"); tracing::debug!(r#type = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = debug(&deb), "msg with arg: {:?}", 56); tracing::debug!(r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = debug(&deb) }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = display(&disp)); tracing::debug!(foo = true, r#type = display(&disp)); tracing::debug!(r#type = display(&disp), qux = 3); tracing::debug!(foo = true, r#type = display(&disp), qux = 3); tracing::debug!(r#type = display(&disp), "msg without args"); tracing::debug!(foo = true, r#type = display(&disp), "msg without args"); tracing::debug!(r#type = display(&disp), qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = display(&disp), qux = 3, "msg without args"); tracing::debug!({ r#type = display(&disp) }, "msg without args"); tracing::debug!({ foo = true, r#type = display(&disp) }, "msg without args"); tracing::debug!({ r#type = display(&disp), qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = display(&disp), qux = 3 }, "msg without args"); tracing::debug!(r#type = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = display(&disp), "msg with arg: {:?}", 56); tracing::debug!(r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = display(&disp) }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(r#type = tracing::field::Empty); tracing::debug!(foo = true, r#type = tracing::field::Empty); tracing::debug!(r#type = tracing::field::Empty, qux = 3); tracing::debug!(foo = true, r#type = tracing::field::Empty, qux = 3); tracing::debug!(r#type = tracing::field::Empty, "msg without args"); tracing::debug!(foo = true, r#type = tracing::field::Empty, "msg without args"); tracing::debug!(r#type = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!(foo = true, r#type = tracing::field::Empty, qux = 3, "msg without args"); tracing::debug!({ r#type = tracing::field::Empty }, "msg without args"); tracing::debug!({ foo = true, r#type = tracing::field::Empty }, "msg without args"); tracing::debug!({ r#type = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::debug!(r#type = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::debug!(r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::debug!({ r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(var); tracing::debug!(foo = true, var); tracing::debug!(var, qux = 3); tracing::debug!(foo = true, var, qux = 3); tracing::debug!(var, "msg without args"); tracing::debug!(foo = true, var, "msg without args"); tracing::debug!(var, qux = 3, "msg without args"); tracing::debug!(foo = true, var, qux = 3, "msg without args"); tracing::debug!({ var }, "msg without args"); tracing::debug!({ foo = true, var }, "msg without args"); tracing::debug!({ var, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, var, qux = 3 }, "msg without args"); tracing::debug!(var, "msg with arg: {:?}", 56); tracing::debug!(foo = true, var, "msg with arg: {:?}", 56); tracing::debug!(var, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, var, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ var }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, var }, "msg with arg: {:?}", 56); tracing::debug!({ var, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, var, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(sub.field); tracing::debug!(foo = true, sub.field); tracing::debug!(sub.field, qux = 3); tracing::debug!(foo = true, sub.field, qux = 3); tracing::debug!(sub.field, "msg without args"); tracing::debug!(foo = true, sub.field, "msg without args"); tracing::debug!(sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, sub.field, qux = 3, "msg without args"); tracing::debug!({ sub.field }, "msg without args"); tracing::debug!({ foo = true, sub.field }, "msg without args"); tracing::debug!({ sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, sub.field, qux = 3 }, "msg without args"); tracing::debug!(sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, sub.field, "msg with arg: {:?}", 56); tracing::debug!(sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(%disp); tracing::debug!(foo = true, %disp); tracing::debug!(%disp, qux = 3); tracing::debug!(foo = true, %disp, qux = 3); tracing::debug!(%disp, "msg without args"); tracing::debug!(foo = true, %disp, "msg without args"); tracing::debug!(%disp, qux = 3, "msg without args"); tracing::debug!(foo = true, %disp, qux = 3, "msg without args"); tracing::debug!({ %disp }, "msg without args"); tracing::debug!({ foo = true, %disp }, "msg without args"); tracing::debug!({ %disp, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, %disp, qux = 3 }, "msg without args"); tracing::debug!(%disp, "msg with arg: {:?}", 56); tracing::debug!(foo = true, %disp, "msg with arg: {:?}", 56); tracing::debug!(%disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, %disp, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ %disp }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, %disp }, "msg with arg: {:?}", 56); tracing::debug!({ %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(?deb); tracing::debug!(foo = true, ?deb); tracing::debug!(?deb, qux = 3); tracing::debug!(foo = true, ?deb, qux = 3); tracing::debug!(?deb, "msg without args"); tracing::debug!(foo = true, ?deb, "msg without args"); tracing::debug!(?deb, qux = 3, "msg without args"); tracing::debug!(foo = true, ?deb, qux = 3, "msg without args"); tracing::debug!({ ?deb }, "msg without args"); tracing::debug!({ foo = true, ?deb }, "msg without args"); tracing::debug!({ ?deb, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ?deb, qux = 3 }, "msg without args"); tracing::debug!(?deb, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ?deb, "msg with arg: {:?}", 56); tracing::debug!(?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ?deb }, "msg with arg: {:?}", 56); tracing::debug!({ ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(%sub.field); tracing::debug!(foo = true, %sub.field); tracing::debug!(%sub.field, qux = 3); tracing::debug!(foo = true, %sub.field, qux = 3); tracing::debug!(%sub.field, "msg without args"); tracing::debug!(foo = true, %sub.field, "msg without args"); tracing::debug!(%sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, %sub.field, qux = 3, "msg without args"); tracing::debug!({ %sub.field }, "msg without args"); tracing::debug!({ foo = true, %sub.field }, "msg without args"); tracing::debug!({ %sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, %sub.field, qux = 3 }, "msg without args"); tracing::debug!(%sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, %sub.field, "msg with arg: {:?}", 56); tracing::debug!(%sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, %sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!(?sub.field); tracing::debug!(foo = true, ?sub.field); tracing::debug!(?sub.field, qux = 3); tracing::debug!(foo = true, ?sub.field, qux = 3); tracing::debug!(?sub.field, "msg without args"); tracing::debug!(foo = true, ?sub.field, "msg without args"); tracing::debug!(?sub.field, qux = 3, "msg without args"); tracing::debug!(foo = true, ?sub.field, qux = 3, "msg without args"); tracing::debug!({ ?sub.field }, "msg without args"); tracing::debug!({ foo = true, ?sub.field }, "msg without args"); tracing::debug!({ ?sub.field, qux = 3 }, "msg without args"); tracing::debug!({ foo = true, ?sub.field, qux = 3 }, "msg without args"); tracing::debug!(?sub.field, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ?sub.field, "msg with arg: {:?}", 56); tracing::debug!(?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!(foo = true, ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::debug!({ ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ?sub.field }, "msg with arg: {:?}", 56); tracing::debug!({ ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::debug!({ foo = true, ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); }