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