macro_rules! log_info { ($($arg:tt)*) => { ... }; }
Expand description
Logs an info message with the specified format string and arguments.
Arguments
format
- A format string for the info message.args
- Arguments to be formatted into the info message.
Example
cgl_rs::logger::init(true);
cgl_rs::log_info!("This is an info message with an argument: {}", 42);
// ...
cgl_rs::logger::shutdown();