//! DO NOT EDIT! This file is generated by `xtask`. //! Contains tests for the `debug!` 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 debug() { const CONST_VAR: &str = "const-field"; let var = true; let sub = Sub { field: 4, }; let disp = Disp { val: 61, }; let deb = Deb { val: 102, }; tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = 3); // DEBUG:debug,np,-,-,-,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = 3); // DEBUG:debug,np,-,p,-,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = 3, qux = 3); // DEBUG:debug,np,-,f,-,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = 3, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = 3, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = 3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = 3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = false); // DEBUG:debug,np,-,-,-,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = false); // DEBUG:debug,np,-,p,-,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = false, qux = 3); // DEBUG:debug,np,-,f,-,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = false, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = false, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = false }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = false }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?3); // DEBUG:debug,np,-,-,-,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?3); // DEBUG:debug,np,-,p,-,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?3, qux = 3); // DEBUG:debug,np,-,f,-,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?3, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?3, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %3); // DEBUG:debug,np,-,-,-,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %3); // DEBUG:debug,np,-,p,-,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %3, qux = 3); // DEBUG:debug,np,-,f,-,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %3, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %3, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?deb); // DEBUG:debug,np,-,-,-,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?deb); // DEBUG:debug,np,-,p,-,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?deb, qux = 3); // DEBUG:debug,np,-,f,-,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?deb, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?deb, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?deb }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?deb }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %disp); // DEBUG:debug,np,-,-,-,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %disp); // DEBUG:debug,np,-,p,-,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %disp, qux = 3); // DEBUG:debug,np,-,f,-,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %disp, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %disp, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %disp }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %disp }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?sub.field); // DEBUG:debug,np,-,-,-,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?sub.field); // DEBUG:debug,np,-,p,-,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %sub.field); // DEBUG:debug,np,-,-,-,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %sub.field); // DEBUG:debug,np,-,p,-,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = debug(&deb)); // DEBUG:debug,np,-,-,-,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = debug(&deb)); // DEBUG:debug,np,-,p,-,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3); // DEBUG:debug,np,-,f,-,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3); // DEBUG:debug,np,-,pf,-,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = debug(&deb), "msg without args"); // DEBUG:debug,np,-,-,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), "msg without args"); // DEBUG:debug,np,-,p,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = display(&disp)); // DEBUG:debug,np,-,-,-,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = display(&disp)); // DEBUG:debug,np,-,p,-,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = display(&disp), qux = 3); // DEBUG:debug,np,-,f,-,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3); // DEBUG:debug,np,-,pf,-,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = display(&disp), "msg without args"); // DEBUG:debug,np,-,-,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = display(&disp), "msg without args"); // DEBUG:debug,np,-,p,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = tracing::field::Empty); // DEBUG:debug,np,-,-,-,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty); // DEBUG:debug,np,-,p,-,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,f,-,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,pf,-,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,-,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,p,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},-,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},p,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = 3); // DEBUG:debug,np,-,-,-,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = 3); // DEBUG:debug,np,-,p,-,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = 3, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = 3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = false); // DEBUG:debug,np,-,-,-,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = false); // DEBUG:debug,np,-,p,-,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = false, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = false, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = false, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = false }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = false }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?3); // DEBUG:debug,np,-,-,-,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3); // DEBUG:debug,np,-,p,-,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?3, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %3); // DEBUG:debug,np,-,-,-,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %3); // DEBUG:debug,np,-,p,-,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %3, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?deb); // DEBUG:debug,np,-,-,-,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb); // DEBUG:debug,np,-,p,-,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?deb, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?deb }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %disp); // DEBUG:debug,np,-,-,-,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp); // DEBUG:debug,np,-,p,-,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %disp, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %disp }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?sub.field); // DEBUG:debug,np,-,-,-,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field); // DEBUG:debug,np,-,p,-,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %sub.field); // DEBUG:debug,np,-,-,-,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field); // DEBUG:debug,np,-,p,-,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = debug(&deb)); // DEBUG:debug,np,-,-,-,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb)); // DEBUG:debug,np,-,p,-,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = debug(&deb), "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = display(&disp)); // DEBUG:debug,np,-,-,-,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp)); // DEBUG:debug,np,-,p,-,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = display(&disp), "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty); // DEBUG:debug,np,-,-,-,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty); // DEBUG:debug,np,-,p,-,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,f,-,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,pf,-,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,-,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,p,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},-,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},p,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"dotted.ident","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = 3); // DEBUG:debug,np,-,-,-,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = 3); // DEBUG:debug,np,-,p,-,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = 3, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = 3, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = 3, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = 3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = 3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = false); // DEBUG:debug,np,-,-,-,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = false); // DEBUG:debug,np,-,p,-,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = false, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = false, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = false, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = false }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = false }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?3); // DEBUG:debug,np,-,-,-,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?3); // DEBUG:debug,np,-,p,-,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?3, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?3, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?3, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %3); // DEBUG:debug,np,-,-,-,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %3); // DEBUG:debug,np,-,p,-,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %3, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %3, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %3, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?deb); // DEBUG:debug,np,-,-,-,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?deb); // DEBUG:debug,np,-,p,-,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?deb, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?deb }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %disp); // DEBUG:debug,np,-,-,-,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %disp); // DEBUG:debug,np,-,p,-,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %disp, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %disp, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %disp, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %disp }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %disp }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?sub.field); // DEBUG:debug,np,-,-,-,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field); // DEBUG:debug,np,-,p,-,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %sub.field); // DEBUG:debug,np,-,-,-,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field); // DEBUG:debug,np,-,p,-,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = debug(&deb)); // DEBUG:debug,np,-,-,-,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb)); // DEBUG:debug,np,-,p,-,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = debug(&deb), "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = display(&disp)); // DEBUG:debug,np,-,-,-,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp)); // DEBUG:debug,np,-,p,-,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = display(&disp), "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = tracing::field::Empty); // DEBUG:debug,np,-,-,-,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty); // DEBUG:debug,np,-,p,-,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,f,-,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,pf,-,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,-,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,p,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},-,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},p,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"\"literal\"","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = 3); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = 3, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = 3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = false); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = false, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = false }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?3); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?3, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %3); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %3, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?deb); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %disp); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %disp, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %disp }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb)); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb)); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp)); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp)); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty); // DEBUG:debug,np,-,-,-,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty); // DEBUG:debug,np,-,p,-,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,f,-,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,pf,-,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,-,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,p,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},-,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},p,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"{ CONST_VAR }","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = 3); // DEBUG:debug,np,-,-,-,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = 3); // DEBUG:debug,np,-,p,-,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = 3, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = 3, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = 3, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = 3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = 3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = 3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = false); // DEBUG:debug,np,-,-,-,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = false); // DEBUG:debug,np,-,p,-,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = false, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = false, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = false, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = false }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = false }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = false, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = false, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = false }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","false" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?3); // DEBUG:debug,np,-,-,-,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?3); // DEBUG:debug,np,-,p,-,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?3, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?3, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?3, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","?3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %3); // DEBUG:debug,np,-,-,-,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %3); // DEBUG:debug,np,-,p,-,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %3, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %3, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %3, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %3 }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %3 }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %3, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","%3" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?deb); // DEBUG:debug,np,-,-,-,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?deb); // DEBUG:debug,np,-,p,-,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?deb, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?deb, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?deb, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?deb }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?deb }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %disp); // DEBUG:debug,np,-,-,-,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %disp); // DEBUG:debug,np,-,p,-,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %disp, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %disp, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %disp, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %disp }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %disp }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?sub.field); // DEBUG:debug,np,-,-,-,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field); // DEBUG:debug,np,-,p,-,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %sub.field); // DEBUG:debug,np,-,-,-,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %sub.field); // DEBUG:debug,np,-,p,-,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = debug(&deb)); // DEBUG:debug,np,-,-,-,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb)); // DEBUG:debug,np,-,p,-,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3); // DEBUG:debug,np,-,f,-,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = debug(&deb), "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb) }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","debug(&deb)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = display(&disp)); // DEBUG:debug,np,-,-,-,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = display(&disp)); // DEBUG:debug,np,-,p,-,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3); // DEBUG:debug,np,-,f,-,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = display(&disp), "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp) }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","display(&disp)" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = tracing::field::Empty); // DEBUG:debug,np,-,-,-,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty); // DEBUG:debug,np,-,p,-,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,f,-,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3); // DEBUG:debug,np,-,pf,-,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,-,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, "msg without args"); // DEBUG:debug,np,-,p,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},-,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty }, "msg without args"); // DEBUG:debug,np,{},p,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,"r#type","tracing::field::Empty" tracing::debug!(name: "mog", parent: ::core::option::Option::None, var); // DEBUG:debug,np,-,-,-,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, var); // DEBUG:debug,np,-,p,-,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, var, qux = 3); // DEBUG:debug,np,-,f,-,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, var, qux = 3); // DEBUG:debug,np,-,pf,-,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, var, "msg without args"); // DEBUG:debug,np,-,-,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, var, "msg without args"); // DEBUG:debug,np,-,p,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, var, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, var, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { var }, "msg without args"); // DEBUG:debug,np,{},-,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, var }, "msg without args"); // DEBUG:debug,np,{},p,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { var, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, var, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, var, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, var, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, var, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, var, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { var }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, var }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { var, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, var, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,-,"var" tracing::debug!(name: "mog", parent: ::core::option::Option::None, sub.field); // DEBUG:debug,np,-,-,-,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, sub.field); // DEBUG:debug,np,-,p,-,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, sub.field, qux = 3); // DEBUG:debug,np,-,f,-,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,-,"sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %disp); // DEBUG:debug,np,-,-,-,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %disp); // DEBUG:debug,np,-,p,-,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %disp, qux = 3); // DEBUG:debug,np,-,f,-,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %disp, qux = 3); // DEBUG:debug,np,-,pf,-,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %disp, "msg without args"); // DEBUG:debug,np,-,-,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %disp, "msg without args"); // DEBUG:debug,np,-,p,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %disp, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %disp }, "msg without args"); // DEBUG:debug,np,{},-,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %disp }, "msg without args"); // DEBUG:debug,np,{},p,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %disp, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %disp, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,-,"%disp" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?deb); // DEBUG:debug,np,-,-,-,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?deb); // DEBUG:debug,np,-,p,-,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?deb, qux = 3); // DEBUG:debug,np,-,f,-,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3); // DEBUG:debug,np,-,pf,-,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?deb, "msg without args"); // DEBUG:debug,np,-,-,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?deb, "msg without args"); // DEBUG:debug,np,-,p,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?deb }, "msg without args"); // DEBUG:debug,np,{},-,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?deb }, "msg without args"); // DEBUG:debug,np,{},p,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,-,"?deb" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %sub.field); // DEBUG:debug,np,-,-,-,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %sub.field); // DEBUG:debug,np,-,p,-,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %sub.field, qux = 3); // DEBUG:debug,np,-,f,-,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,-,"%sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?sub.field); // DEBUG:debug,np,-,-,-,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?sub.field); // DEBUG:debug,np,-,p,-,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?sub.field, qux = 3); // DEBUG:debug,np,-,f,-,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3); // DEBUG:debug,np,-,pf,-,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?sub.field, "msg without args"); // DEBUG:debug,np,-,-,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?sub.field, "msg without args"); // DEBUG:debug,np,-,p,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,f,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,np,-,pf,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?sub.field }, "msg without args"); // DEBUG:debug,np,{},-,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?sub.field }, "msg without args"); // DEBUG:debug,np,{},p,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},f,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,np,{},pf,m,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,-,ma,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,p,ma,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,f,ma,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,np,-,pf,ma,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},-,ma,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},p,ma,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},f,ma,-,"?sub.field" tracing::debug!(name: "mog", parent: ::core::option::Option::None, { foo = true, ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,np,{},pf,ma,-,"?sub.field" }