#![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 error() {
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::error!(name: "mog", ident = 3); tracing::error!(name: "mog", foo = true, ident = 3); tracing::error!(name: "mog", ident = 3, qux = 3); tracing::error!(name: "mog", foo = true, ident = 3, qux = 3); tracing::error!(name: "mog", ident = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = 3, "msg without args"); tracing::error!(name: "mog", ident = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = 3 }, "msg without args"); tracing::error!(name: "mog", { ident = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = false); tracing::error!(name: "mog", foo = true, ident = false); tracing::error!(name: "mog", ident = false, qux = 3); tracing::error!(name: "mog", foo = true, ident = false, qux = 3); tracing::error!(name: "mog", ident = false, "msg without args"); tracing::error!(name: "mog", foo = true, ident = false, "msg without args"); tracing::error!(name: "mog", ident = false, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = false, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = false }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = false }, "msg without args"); tracing::error!(name: "mog", { ident = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = ?3); tracing::error!(name: "mog", foo = true, ident = ?3); tracing::error!(name: "mog", ident = ?3, qux = 3); tracing::error!(name: "mog", foo = true, ident = ?3, qux = 3); tracing::error!(name: "mog", ident = ?3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = ?3, "msg without args"); tracing::error!(name: "mog", ident = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = ?3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = ?3 }, "msg without args"); tracing::error!(name: "mog", { ident = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = %3); tracing::error!(name: "mog", foo = true, ident = %3); tracing::error!(name: "mog", ident = %3, qux = 3); tracing::error!(name: "mog", foo = true, ident = %3, qux = 3); tracing::error!(name: "mog", ident = %3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = %3, "msg without args"); tracing::error!(name: "mog", ident = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = %3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = %3 }, "msg without args"); tracing::error!(name: "mog", { ident = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = ?deb); tracing::error!(name: "mog", foo = true, ident = ?deb); tracing::error!(name: "mog", ident = ?deb, qux = 3); tracing::error!(name: "mog", foo = true, ident = ?deb, qux = 3); tracing::error!(name: "mog", ident = ?deb, "msg without args"); tracing::error!(name: "mog", foo = true, ident = ?deb, "msg without args"); tracing::error!(name: "mog", ident = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = ?deb }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = ?deb }, "msg without args"); tracing::error!(name: "mog", { ident = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = %disp); tracing::error!(name: "mog", foo = true, ident = %disp); tracing::error!(name: "mog", ident = %disp, qux = 3); tracing::error!(name: "mog", foo = true, ident = %disp, qux = 3); tracing::error!(name: "mog", ident = %disp, "msg without args"); tracing::error!(name: "mog", foo = true, ident = %disp, "msg without args"); tracing::error!(name: "mog", ident = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = %disp }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = %disp }, "msg without args"); tracing::error!(name: "mog", { ident = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = ?sub.field); tracing::error!(name: "mog", foo = true, ident = ?sub.field); tracing::error!(name: "mog", ident = ?sub.field, qux = 3); tracing::error!(name: "mog", foo = true, ident = ?sub.field, qux = 3); tracing::error!(name: "mog", ident = ?sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, ident = ?sub.field, "msg without args"); tracing::error!(name: "mog", ident = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { ident = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = %sub.field); tracing::error!(name: "mog", foo = true, ident = %sub.field); tracing::error!(name: "mog", ident = %sub.field, qux = 3); tracing::error!(name: "mog", foo = true, ident = %sub.field, qux = 3); tracing::error!(name: "mog", ident = %sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, ident = %sub.field, "msg without args"); tracing::error!(name: "mog", ident = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = %sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = %sub.field }, "msg without args"); tracing::error!(name: "mog", { ident = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = debug(&deb)); tracing::error!(name: "mog", foo = true, ident = debug(&deb)); tracing::error!(name: "mog", ident = debug(&deb), qux = 3); tracing::error!(name: "mog", foo = true, ident = debug(&deb), qux = 3); tracing::error!(name: "mog", ident = debug(&deb), "msg without args"); tracing::error!(name: "mog", foo = true, ident = debug(&deb), "msg without args"); tracing::error!(name: "mog", ident = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { ident = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = display(&disp)); tracing::error!(name: "mog", foo = true, ident = display(&disp)); tracing::error!(name: "mog", ident = display(&disp), qux = 3); tracing::error!(name: "mog", foo = true, ident = display(&disp), qux = 3); tracing::error!(name: "mog", ident = display(&disp), "msg without args"); tracing::error!(name: "mog", foo = true, ident = display(&disp), "msg without args"); tracing::error!(name: "mog", ident = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { ident = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = tracing::field::Empty); tracing::error!(name: "mog", foo = true, ident = tracing::field::Empty); tracing::error!(name: "mog", ident = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", foo = true, ident = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", ident = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", foo = true, ident = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", { ident = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = 3); tracing::error!(name: "mog", foo = true, dotted.ident = 3); tracing::error!(name: "mog", dotted.ident = 3, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = 3, qux = 3); tracing::error!(name: "mog", dotted.ident = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = 3, "msg without args"); tracing::error!(name: "mog", dotted.ident = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = 3 }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = false); tracing::error!(name: "mog", foo = true, dotted.ident = false); tracing::error!(name: "mog", dotted.ident = false, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = false, qux = 3); tracing::error!(name: "mog", dotted.ident = false, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = false, "msg without args"); tracing::error!(name: "mog", dotted.ident = false, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = false, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = false }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = false }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = ?3); tracing::error!(name: "mog", foo = true, dotted.ident = ?3); tracing::error!(name: "mog", dotted.ident = ?3, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = ?3, qux = 3); tracing::error!(name: "mog", dotted.ident = ?3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = ?3, "msg without args"); tracing::error!(name: "mog", dotted.ident = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = ?3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = ?3 }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = %3); tracing::error!(name: "mog", foo = true, dotted.ident = %3); tracing::error!(name: "mog", dotted.ident = %3, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = %3, qux = 3); tracing::error!(name: "mog", dotted.ident = %3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = %3, "msg without args"); tracing::error!(name: "mog", dotted.ident = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = %3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = %3 }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = ?deb); tracing::error!(name: "mog", foo = true, dotted.ident = ?deb); tracing::error!(name: "mog", dotted.ident = ?deb, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = ?deb, qux = 3); tracing::error!(name: "mog", dotted.ident = ?deb, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = ?deb, "msg without args"); tracing::error!(name: "mog", dotted.ident = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = ?deb }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = ?deb }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = %disp); tracing::error!(name: "mog", foo = true, dotted.ident = %disp); tracing::error!(name: "mog", dotted.ident = %disp, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = %disp, qux = 3); tracing::error!(name: "mog", dotted.ident = %disp, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = %disp, "msg without args"); tracing::error!(name: "mog", dotted.ident = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = %disp }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = %disp }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = ?sub.field); tracing::error!(name: "mog", foo = true, dotted.ident = ?sub.field); tracing::error!(name: "mog", dotted.ident = ?sub.field, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = ?sub.field, qux = 3); tracing::error!(name: "mog", dotted.ident = ?sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = ?sub.field, "msg without args"); tracing::error!(name: "mog", dotted.ident = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = %sub.field); tracing::error!(name: "mog", foo = true, dotted.ident = %sub.field); tracing::error!(name: "mog", dotted.ident = %sub.field, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = %sub.field, qux = 3); tracing::error!(name: "mog", dotted.ident = %sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = %sub.field, "msg without args"); tracing::error!(name: "mog", dotted.ident = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = %sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = %sub.field }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = debug(&deb)); tracing::error!(name: "mog", foo = true, dotted.ident = debug(&deb)); tracing::error!(name: "mog", dotted.ident = debug(&deb), qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = debug(&deb), qux = 3); tracing::error!(name: "mog", dotted.ident = debug(&deb), "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = debug(&deb), "msg without args"); tracing::error!(name: "mog", dotted.ident = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = display(&disp)); tracing::error!(name: "mog", foo = true, dotted.ident = display(&disp)); tracing::error!(name: "mog", dotted.ident = display(&disp), qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = display(&disp), qux = 3); tracing::error!(name: "mog", dotted.ident = display(&disp), "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = display(&disp), "msg without args"); tracing::error!(name: "mog", dotted.ident = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = tracing::field::Empty); tracing::error!(name: "mog", foo = true, dotted.ident = tracing::field::Empty); tracing::error!(name: "mog", dotted.ident = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", foo = true, dotted.ident = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", dotted.ident = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", { dotted.ident = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = 3); tracing::error!(name: "mog", foo = true, "literal" = 3); tracing::error!(name: "mog", "literal" = 3, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = 3, qux = 3); tracing::error!(name: "mog", "literal" = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = 3, "msg without args"); tracing::error!(name: "mog", "literal" = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = 3 }, "msg without args"); tracing::error!(name: "mog", { "literal" = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = false); tracing::error!(name: "mog", foo = true, "literal" = false); tracing::error!(name: "mog", "literal" = false, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = false, qux = 3); tracing::error!(name: "mog", "literal" = false, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = false, "msg without args"); tracing::error!(name: "mog", "literal" = false, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = false, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = false }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = false }, "msg without args"); tracing::error!(name: "mog", { "literal" = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = ?3); tracing::error!(name: "mog", foo = true, "literal" = ?3); tracing::error!(name: "mog", "literal" = ?3, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = ?3, qux = 3); tracing::error!(name: "mog", "literal" = ?3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = ?3, "msg without args"); tracing::error!(name: "mog", "literal" = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = ?3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = ?3 }, "msg without args"); tracing::error!(name: "mog", { "literal" = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = %3); tracing::error!(name: "mog", foo = true, "literal" = %3); tracing::error!(name: "mog", "literal" = %3, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = %3, qux = 3); tracing::error!(name: "mog", "literal" = %3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = %3, "msg without args"); tracing::error!(name: "mog", "literal" = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = %3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = %3 }, "msg without args"); tracing::error!(name: "mog", { "literal" = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = ?deb); tracing::error!(name: "mog", foo = true, "literal" = ?deb); tracing::error!(name: "mog", "literal" = ?deb, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = ?deb, qux = 3); tracing::error!(name: "mog", "literal" = ?deb, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = ?deb, "msg without args"); tracing::error!(name: "mog", "literal" = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = ?deb }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = ?deb }, "msg without args"); tracing::error!(name: "mog", { "literal" = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = %disp); tracing::error!(name: "mog", foo = true, "literal" = %disp); tracing::error!(name: "mog", "literal" = %disp, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = %disp, qux = 3); tracing::error!(name: "mog", "literal" = %disp, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = %disp, "msg without args"); tracing::error!(name: "mog", "literal" = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = %disp }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = %disp }, "msg without args"); tracing::error!(name: "mog", { "literal" = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = ?sub.field); tracing::error!(name: "mog", foo = true, "literal" = ?sub.field); tracing::error!(name: "mog", "literal" = ?sub.field, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = ?sub.field, qux = 3); tracing::error!(name: "mog", "literal" = ?sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = ?sub.field, "msg without args"); tracing::error!(name: "mog", "literal" = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { "literal" = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = %sub.field); tracing::error!(name: "mog", foo = true, "literal" = %sub.field); tracing::error!(name: "mog", "literal" = %sub.field, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = %sub.field, qux = 3); tracing::error!(name: "mog", "literal" = %sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = %sub.field, "msg without args"); tracing::error!(name: "mog", "literal" = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = %sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = %sub.field }, "msg without args"); tracing::error!(name: "mog", { "literal" = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = debug(&deb)); tracing::error!(name: "mog", foo = true, "literal" = debug(&deb)); tracing::error!(name: "mog", "literal" = debug(&deb), qux = 3); tracing::error!(name: "mog", foo = true, "literal" = debug(&deb), qux = 3); tracing::error!(name: "mog", "literal" = debug(&deb), "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = debug(&deb), "msg without args"); tracing::error!(name: "mog", "literal" = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { "literal" = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = display(&disp)); tracing::error!(name: "mog", foo = true, "literal" = display(&disp)); tracing::error!(name: "mog", "literal" = display(&disp), qux = 3); tracing::error!(name: "mog", foo = true, "literal" = display(&disp), qux = 3); tracing::error!(name: "mog", "literal" = display(&disp), "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = display(&disp), "msg without args"); tracing::error!(name: "mog", "literal" = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { "literal" = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = tracing::field::Empty); tracing::error!(name: "mog", foo = true, "literal" = tracing::field::Empty); tracing::error!(name: "mog", "literal" = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", foo = true, "literal" = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", "literal" = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", "literal" = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, "literal" = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", { "literal" = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = 3); tracing::error!(name: "mog", { CONST_VAR } = 3, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = 3, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = 3, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = 3 }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = false); tracing::error!(name: "mog", foo = true, { CONST_VAR } = false); tracing::error!(name: "mog", { CONST_VAR } = false, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = false, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = false, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = false, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = false, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = false, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = false }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = false }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = ?3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?3); tracing::error!(name: "mog", { CONST_VAR } = ?3, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?3, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = ?3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?3, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = ?3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?3 }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = %3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %3); tracing::error!(name: "mog", { CONST_VAR } = %3, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %3, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = %3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %3, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = %3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %3 }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = ?deb); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?deb); tracing::error!(name: "mog", { CONST_VAR } = ?deb, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?deb, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = ?deb, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?deb, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = ?deb }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?deb }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = %disp); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %disp); tracing::error!(name: "mog", { CONST_VAR } = %disp, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %disp, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = %disp, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %disp, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = %disp }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %disp }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = ?sub.field); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?sub.field); tracing::error!(name: "mog", { CONST_VAR } = ?sub.field, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?sub.field, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = ?sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?sub.field, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = %sub.field); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %sub.field); tracing::error!(name: "mog", { CONST_VAR } = %sub.field, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %sub.field, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = %sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %sub.field, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = %sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %sub.field }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = debug(&deb)); tracing::error!(name: "mog", foo = true, { CONST_VAR } = debug(&deb)); tracing::error!(name: "mog", { CONST_VAR } = debug(&deb), qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = debug(&deb), qux = 3); tracing::error!(name: "mog", { CONST_VAR } = debug(&deb), "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = debug(&deb), "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = display(&disp)); tracing::error!(name: "mog", foo = true, { CONST_VAR } = display(&disp)); tracing::error!(name: "mog", { CONST_VAR } = display(&disp), qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = display(&disp), qux = 3); tracing::error!(name: "mog", { CONST_VAR } = display(&disp), "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = display(&disp), "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = tracing::field::Empty); tracing::error!(name: "mog", foo = true, { CONST_VAR } = tracing::field::Empty); tracing::error!(name: "mog", { CONST_VAR } = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", { CONST_VAR } = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = 3); tracing::error!(name: "mog", foo = true, r#type = 3); tracing::error!(name: "mog", r#type = 3, qux = 3); tracing::error!(name: "mog", foo = true, r#type = 3, qux = 3); tracing::error!(name: "mog", r#type = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = 3, "msg without args"); tracing::error!(name: "mog", r#type = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = 3, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = 3 }, "msg without args"); tracing::error!(name: "mog", { r#type = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = 3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = 3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = false); tracing::error!(name: "mog", foo = true, r#type = false); tracing::error!(name: "mog", r#type = false, qux = 3); tracing::error!(name: "mog", foo = true, r#type = false, qux = 3); tracing::error!(name: "mog", r#type = false, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = false, "msg without args"); tracing::error!(name: "mog", r#type = false, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = false, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = false }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = false }, "msg without args"); tracing::error!(name: "mog", { r#type = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = false, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = false, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = false, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = false }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = false, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = ?3); tracing::error!(name: "mog", foo = true, r#type = ?3); tracing::error!(name: "mog", r#type = ?3, qux = 3); tracing::error!(name: "mog", foo = true, r#type = ?3, qux = 3); tracing::error!(name: "mog", r#type = ?3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = ?3, "msg without args"); tracing::error!(name: "mog", r#type = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = ?3, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = ?3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = ?3 }, "msg without args"); tracing::error!(name: "mog", { r#type = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = ?3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = ?3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = ?3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = %3); tracing::error!(name: "mog", foo = true, r#type = %3); tracing::error!(name: "mog", r#type = %3, qux = 3); tracing::error!(name: "mog", foo = true, r#type = %3, qux = 3); tracing::error!(name: "mog", r#type = %3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = %3, "msg without args"); tracing::error!(name: "mog", r#type = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = %3, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = %3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = %3 }, "msg without args"); tracing::error!(name: "mog", { r#type = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = %3, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = %3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = %3, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = %3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = ?deb); tracing::error!(name: "mog", foo = true, r#type = ?deb); tracing::error!(name: "mog", r#type = ?deb, qux = 3); tracing::error!(name: "mog", foo = true, r#type = ?deb, qux = 3); tracing::error!(name: "mog", r#type = ?deb, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = ?deb, "msg without args"); tracing::error!(name: "mog", r#type = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = ?deb }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = ?deb }, "msg without args"); tracing::error!(name: "mog", { r#type = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = %disp); tracing::error!(name: "mog", foo = true, r#type = %disp); tracing::error!(name: "mog", r#type = %disp, qux = 3); tracing::error!(name: "mog", foo = true, r#type = %disp, qux = 3); tracing::error!(name: "mog", r#type = %disp, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = %disp, "msg without args"); tracing::error!(name: "mog", r#type = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = %disp }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = %disp }, "msg without args"); tracing::error!(name: "mog", { r#type = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = ?sub.field); tracing::error!(name: "mog", foo = true, r#type = ?sub.field); tracing::error!(name: "mog", r#type = ?sub.field, qux = 3); tracing::error!(name: "mog", foo = true, r#type = ?sub.field, qux = 3); tracing::error!(name: "mog", r#type = ?sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = ?sub.field, "msg without args"); tracing::error!(name: "mog", r#type = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = ?sub.field }, "msg without args"); tracing::error!(name: "mog", { r#type = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = %sub.field); tracing::error!(name: "mog", foo = true, r#type = %sub.field); tracing::error!(name: "mog", r#type = %sub.field, qux = 3); tracing::error!(name: "mog", foo = true, r#type = %sub.field, qux = 3); tracing::error!(name: "mog", r#type = %sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = %sub.field, "msg without args"); tracing::error!(name: "mog", r#type = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = %sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = %sub.field }, "msg without args"); tracing::error!(name: "mog", { r#type = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = debug(&deb)); tracing::error!(name: "mog", foo = true, r#type = debug(&deb)); tracing::error!(name: "mog", r#type = debug(&deb), qux = 3); tracing::error!(name: "mog", foo = true, r#type = debug(&deb), qux = 3); tracing::error!(name: "mog", r#type = debug(&deb), "msg without args"); tracing::error!(name: "mog", foo = true, r#type = debug(&deb), "msg without args"); tracing::error!(name: "mog", r#type = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = debug(&deb), qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = debug(&deb) }, "msg without args"); tracing::error!(name: "mog", { r#type = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = debug(&deb), qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = debug(&deb), "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = debug(&deb) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = display(&disp)); tracing::error!(name: "mog", foo = true, r#type = display(&disp)); tracing::error!(name: "mog", r#type = display(&disp), qux = 3); tracing::error!(name: "mog", foo = true, r#type = display(&disp), qux = 3); tracing::error!(name: "mog", r#type = display(&disp), "msg without args"); tracing::error!(name: "mog", foo = true, r#type = display(&disp), "msg without args"); tracing::error!(name: "mog", r#type = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = display(&disp), qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = display(&disp) }, "msg without args"); tracing::error!(name: "mog", { r#type = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = display(&disp), qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = display(&disp), "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = display(&disp) }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = tracing::field::Empty); tracing::error!(name: "mog", foo = true, r#type = tracing::field::Empty); tracing::error!(name: "mog", r#type = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", foo = true, r#type = tracing::field::Empty, qux = 3); tracing::error!(name: "mog", r#type = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = tracing::field::Empty, "msg without args"); tracing::error!(name: "mog", r#type = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, r#type = tracing::field::Empty, qux = 3, "msg without args"); tracing::error!(name: "mog", { r#type = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = tracing::field::Empty }, "msg without args"); tracing::error!(name: "mog", { r#type = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg without args"); tracing::error!(name: "mog", r#type = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); tracing::error!(name: "mog", r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", var); tracing::error!(name: "mog", foo = true, var); tracing::error!(name: "mog", var, qux = 3); tracing::error!(name: "mog", foo = true, var, qux = 3); tracing::error!(name: "mog", var, "msg without args"); tracing::error!(name: "mog", foo = true, var, "msg without args"); tracing::error!(name: "mog", var, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, var, qux = 3, "msg without args"); tracing::error!(name: "mog", { var }, "msg without args"); tracing::error!(name: "mog", { foo = true, var }, "msg without args"); tracing::error!(name: "mog", { var, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, var, qux = 3 }, "msg without args"); tracing::error!(name: "mog", var, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, var, "msg with arg: {:?}", 56); tracing::error!(name: "mog", var, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, var, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { var }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, var }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { var, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, var, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", sub.field); tracing::error!(name: "mog", foo = true, sub.field); tracing::error!(name: "mog", sub.field, qux = 3); tracing::error!(name: "mog", foo = true, sub.field, qux = 3); tracing::error!(name: "mog", sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, sub.field, "msg without args"); tracing::error!(name: "mog", sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, sub.field }, "msg without args"); tracing::error!(name: "mog", { sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", %disp); tracing::error!(name: "mog", foo = true, %disp); tracing::error!(name: "mog", %disp, qux = 3); tracing::error!(name: "mog", foo = true, %disp, qux = 3); tracing::error!(name: "mog", %disp, "msg without args"); tracing::error!(name: "mog", foo = true, %disp, "msg without args"); tracing::error!(name: "mog", %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, %disp, qux = 3, "msg without args"); tracing::error!(name: "mog", { %disp }, "msg without args"); tracing::error!(name: "mog", { foo = true, %disp }, "msg without args"); tracing::error!(name: "mog", { %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, %disp, qux = 3 }, "msg without args"); tracing::error!(name: "mog", %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, %disp, "msg with arg: {:?}", 56); tracing::error!(name: "mog", %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, %disp, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, %disp }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, %disp, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ?deb); tracing::error!(name: "mog", foo = true, ?deb); tracing::error!(name: "mog", ?deb, qux = 3); tracing::error!(name: "mog", foo = true, ?deb, qux = 3); tracing::error!(name: "mog", ?deb, "msg without args"); tracing::error!(name: "mog", foo = true, ?deb, "msg without args"); tracing::error!(name: "mog", ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ?deb, qux = 3, "msg without args"); tracing::error!(name: "mog", { ?deb }, "msg without args"); tracing::error!(name: "mog", { foo = true, ?deb }, "msg without args"); tracing::error!(name: "mog", { ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ?deb, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ?deb, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ?deb, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ?deb }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ?deb, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", %sub.field); tracing::error!(name: "mog", foo = true, %sub.field); tracing::error!(name: "mog", %sub.field, qux = 3); tracing::error!(name: "mog", foo = true, %sub.field, qux = 3); tracing::error!(name: "mog", %sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, %sub.field, "msg without args"); tracing::error!(name: "mog", %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, %sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { %sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, %sub.field }, "msg without args"); tracing::error!(name: "mog", { %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, %sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, %sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, %sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, %sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, %sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ?sub.field); tracing::error!(name: "mog", foo = true, ?sub.field); tracing::error!(name: "mog", ?sub.field, qux = 3); tracing::error!(name: "mog", foo = true, ?sub.field, qux = 3); tracing::error!(name: "mog", ?sub.field, "msg without args"); tracing::error!(name: "mog", foo = true, ?sub.field, "msg without args"); tracing::error!(name: "mog", ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", foo = true, ?sub.field, qux = 3, "msg without args"); tracing::error!(name: "mog", { ?sub.field }, "msg without args"); tracing::error!(name: "mog", { foo = true, ?sub.field }, "msg without args"); tracing::error!(name: "mog", { ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", { foo = true, ?sub.field, qux = 3 }, "msg without args"); tracing::error!(name: "mog", ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ?sub.field, "msg with arg: {:?}", 56); tracing::error!(name: "mog", ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", foo = true, ?sub.field, qux = 3, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ?sub.field }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); tracing::error!(name: "mog", { foo = true, ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); }