add console log event format hook
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
9c6b5b4407
commit
203cf57fdf
4 changed files with 104 additions and 6 deletions
|
@ -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)+ )
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue