#[macro_export]
#[cfg(
not(feature = "custom_lvl_headers")
)] macro_rules!
lvlheader {
( [trace] ) => { "TRCE" };
( [debug] ) => { "DEBG" };
( [info] ) => { "INFO" };
( [warn] ) => { "WARN" };
( [error] ) => { "ERRO" };
( [crit] ) => { "CRIT" };
}
#[macro_export]
#[cfg(
all(
not(feature = "custom_lvl_headers"),
feature = "show_lvl_header_kv"
))] macro_rules!
lvlheader_kv {
( [trace] ) => { "TRCE" };
( [debug] ) => { "DEBG" };
( [info] ) => { "INFO" };
( [warn] ) => { "WARN" };
( [error] ) => { "ERRO" };
( [crit] ) => { "CRIT" };
}
#[macro_export]
#[cfg(
all(
not(feature = "custom_lvl_headers"),
not(feature = "show_lvl_header_kv")
))] macro_rules!
lvlheader_kv { ( [$a:tt] ) => { "" } }