macro_rules! get_debug {
($message:expr) => { ... };
($message:expr, $module_name:expr) => { ... };
}Expand description
Macro for creating debug-level log messages.
ยงExamples
use daemon_console::get_debug;
let msg = get_debug!("Variable value: 42");
let msg_with_module = get_debug!("Request received", "http");