macro_rules! mosquitto_info {
($($arg:tt)+) => { ... };
}Expand description
Logs a message at the info level into the mosquitto logging subsystem.
ยงExamples
use mosquitto_plugin::mosquitto_info;
let client_id = "unknown";
mosquitto_info!("Authentication of client id {} successful", client_id);