Macro cgl_rs::log_trace

source ·
macro_rules! log_trace {
    ($($arg:tt)*) => { ... };
}
Expand description

Logs a trace message with the specified format string and arguments.

Arguments

  • format - A format string for the trace message.
  • args - Arguments to be formatted into the trace message.

Example

cgl_rs::logger::init(true);
cgl_rs::log_trace!("This is a trace message with an argument: {}", 42);
// ...
cgl_rs::logger::shutdown();