Files
cli/vendor/tracing/test-macros/tests/warn_ntp.rs

1267 lines
229 KiB
Rust

//! DO NOT EDIT! This file is generated by `xtask`.
//! Contains tests for the `warn!` macro.
#![deny(warnings)]
#![no_implicit_prelude]
extern crate tracing;
// We call all macros in this module with `no_implicit_prelude` to ensure they do not depend on the standard prelude.
#[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,
}
/// Manual implementation because otherwise `val` is unused.
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 warn() {
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::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3); // DEBUG:warn,ntp,-,-,-,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3); // DEBUG:warn,ntp,-,p,-,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false); // DEBUG:warn,ntp,-,-,-,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false); // DEBUG:warn,ntp,-,p,-,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3); // DEBUG:warn,ntp,-,-,-,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3); // DEBUG:warn,ntp,-,p,-,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3); // DEBUG:warn,ntp,-,-,-,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3); // DEBUG:warn,ntp,-,p,-,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb); // DEBUG:warn,ntp,-,-,-,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb); // DEBUG:warn,ntp,-,p,-,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp); // DEBUG:warn,ntp,-,-,-,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp); // DEBUG:warn,ntp,-,p,-,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field); // DEBUG:warn,ntp,-,-,-,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field); // DEBUG:warn,ntp,-,p,-,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field); // DEBUG:warn,ntp,-,-,-,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field); // DEBUG:warn,ntp,-,p,-,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb)); // DEBUG:warn,ntp,-,-,-,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb)); // DEBUG:warn,ntp,-,p,-,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp)); // DEBUG:warn,ntp,-,-,-,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp)); // DEBUG:warn,ntp,-,p,-,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty); // DEBUG:warn,ntp,-,-,-,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty); // DEBUG:warn,ntp,-,p,-,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,f,-,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,pf,-,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,-,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,p,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3); // DEBUG:warn,ntp,-,-,-,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3); // DEBUG:warn,ntp,-,p,-,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false); // DEBUG:warn,ntp,-,-,-,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false); // DEBUG:warn,ntp,-,p,-,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3); // DEBUG:warn,ntp,-,-,-,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3); // DEBUG:warn,ntp,-,p,-,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3); // DEBUG:warn,ntp,-,-,-,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3); // DEBUG:warn,ntp,-,p,-,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb); // DEBUG:warn,ntp,-,-,-,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb); // DEBUG:warn,ntp,-,p,-,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp); // DEBUG:warn,ntp,-,-,-,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp); // DEBUG:warn,ntp,-,p,-,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field); // DEBUG:warn,ntp,-,-,-,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field); // DEBUG:warn,ntp,-,p,-,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field); // DEBUG:warn,ntp,-,-,-,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field); // DEBUG:warn,ntp,-,p,-,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb)); // DEBUG:warn,ntp,-,-,-,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb)); // DEBUG:warn,ntp,-,p,-,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp)); // DEBUG:warn,ntp,-,-,-,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp)); // DEBUG:warn,ntp,-,p,-,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty); // DEBUG:warn,ntp,-,-,-,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty); // DEBUG:warn,ntp,-,p,-,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,f,-,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,pf,-,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,-,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,p,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"dotted.ident","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3); // DEBUG:warn,ntp,-,-,-,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3); // DEBUG:warn,ntp,-,p,-,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false); // DEBUG:warn,ntp,-,-,-,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false); // DEBUG:warn,ntp,-,p,-,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3); // DEBUG:warn,ntp,-,-,-,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3); // DEBUG:warn,ntp,-,p,-,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3); // DEBUG:warn,ntp,-,-,-,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3); // DEBUG:warn,ntp,-,p,-,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb); // DEBUG:warn,ntp,-,-,-,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb); // DEBUG:warn,ntp,-,p,-,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp); // DEBUG:warn,ntp,-,-,-,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp); // DEBUG:warn,ntp,-,p,-,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field); // DEBUG:warn,ntp,-,-,-,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field); // DEBUG:warn,ntp,-,p,-,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field); // DEBUG:warn,ntp,-,-,-,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field); // DEBUG:warn,ntp,-,p,-,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb)); // DEBUG:warn,ntp,-,-,-,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb)); // DEBUG:warn,ntp,-,p,-,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp)); // DEBUG:warn,ntp,-,-,-,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp)); // DEBUG:warn,ntp,-,p,-,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty); // DEBUG:warn,ntp,-,-,-,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty); // DEBUG:warn,ntp,-,p,-,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,f,-,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,pf,-,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,-,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,p,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"\"literal\"","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb)); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb)); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp)); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp)); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty); // DEBUG:warn,ntp,-,-,-,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty); // DEBUG:warn,ntp,-,p,-,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,f,-,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,pf,-,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,-,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,p,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"{ CONST_VAR }","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3); // DEBUG:warn,ntp,-,-,-,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3); // DEBUG:warn,ntp,-,p,-,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false); // DEBUG:warn,ntp,-,-,-,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false); // DEBUG:warn,ntp,-,p,-,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","false"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3); // DEBUG:warn,ntp,-,-,-,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3); // DEBUG:warn,ntp,-,p,-,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","?3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3); // DEBUG:warn,ntp,-,-,-,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3); // DEBUG:warn,ntp,-,p,-,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3 }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3 }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","%3"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb); // DEBUG:warn,ntp,-,-,-,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb); // DEBUG:warn,ntp,-,p,-,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp); // DEBUG:warn,ntp,-,-,-,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp); // DEBUG:warn,ntp,-,p,-,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field); // DEBUG:warn,ntp,-,-,-,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field); // DEBUG:warn,ntp,-,p,-,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field); // DEBUG:warn,ntp,-,-,-,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field); // DEBUG:warn,ntp,-,p,-,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb)); // DEBUG:warn,ntp,-,-,-,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb)); // DEBUG:warn,ntp,-,p,-,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","debug(&deb)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp)); // DEBUG:warn,ntp,-,-,-,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp)); // DEBUG:warn,ntp,-,p,-,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp) }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp), qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","display(&disp)"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty); // DEBUG:warn,ntp,-,-,-,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty); // DEBUG:warn,ntp,-,p,-,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,f,-,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3); // DEBUG:warn,ntp,-,pf,-,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,-,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, "msg without args"); // DEBUG:warn,ntp,-,p,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},-,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty }, "msg without args"); // DEBUG:warn,ntp,{},p,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,"r#type","tracing::field::Empty"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var); // DEBUG:warn,ntp,-,-,-,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var); // DEBUG:warn,ntp,-,p,-,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, qux = 3); // DEBUG:warn,ntp,-,f,-,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, qux = 3); // DEBUG:warn,ntp,-,pf,-,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, "msg without args"); // DEBUG:warn,ntp,-,-,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, "msg without args"); // DEBUG:warn,ntp,-,p,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var }, "msg without args"); // DEBUG:warn,ntp,{},-,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var }, "msg without args"); // DEBUG:warn,ntp,{},p,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,-,"var"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field); // DEBUG:warn,ntp,-,-,-,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field); // DEBUG:warn,ntp,-,p,-,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,-,"sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp); // DEBUG:warn,ntp,-,-,-,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp); // DEBUG:warn,ntp,-,p,-,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, qux = 3); // DEBUG:warn,ntp,-,f,-,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, qux = 3); // DEBUG:warn,ntp,-,pf,-,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, "msg without args"); // DEBUG:warn,ntp,-,-,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, "msg without args"); // DEBUG:warn,ntp,-,p,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp }, "msg without args"); // DEBUG:warn,ntp,{},-,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp }, "msg without args"); // DEBUG:warn,ntp,{},p,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,-,"%disp"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb); // DEBUG:warn,ntp,-,-,-,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb); // DEBUG:warn,ntp,-,p,-,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, qux = 3); // DEBUG:warn,ntp,-,f,-,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3); // DEBUG:warn,ntp,-,pf,-,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, "msg without args"); // DEBUG:warn,ntp,-,-,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, "msg without args"); // DEBUG:warn,ntp,-,p,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb }, "msg without args"); // DEBUG:warn,ntp,{},-,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb }, "msg without args"); // DEBUG:warn,ntp,{},p,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,-,"?deb"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field); // DEBUG:warn,ntp,-,-,-,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field); // DEBUG:warn,ntp,-,p,-,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,-,"%sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field); // DEBUG:warn,ntp,-,-,-,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field); // DEBUG:warn,ntp,-,p,-,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, qux = 3); // DEBUG:warn,ntp,-,f,-,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3); // DEBUG:warn,ntp,-,pf,-,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,-,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, "msg without args"); // DEBUG:warn,ntp,-,p,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,f,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3, "msg without args"); // DEBUG:warn,ntp,-,pf,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},-,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field }, "msg without args"); // DEBUG:warn,ntp,{},p,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},f,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field, qux = 3 }, "msg without args"); // DEBUG:warn,ntp,{},pf,m,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,-,ma,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,p,ma,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,f,ma,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,-,pf,ma,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},-,ma,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},p,ma,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},f,ma,-,"?sub.field"
tracing::warn!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:warn,ntp,{},pf,ma,-,"?sub.field"
}