add console log event format hook

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-12-30 12:28:18 +00:00 committed by strawberry
parent 9c6b5b4407
commit 203cf57fdf
4 changed files with 104 additions and 6 deletions

View file

@ -17,7 +17,7 @@ pub use crate::{result::DebugInspect, utils::debug::*};
macro_rules! debug_event {
( $level:expr, $($x:tt)+ ) => {
if $crate::debug::logging() {
::tracing::event!( $level, $($x)+ )
::tracing::event!( $level, _debug = true, $($x)+ )
} else {
::tracing::debug!( $($x)+ )
}