mosquitto_error

Macro mosquitto_error 

Source
macro_rules! mosquitto_error {
    ($($arg:tt)+) => { ... };
}
Expand description

Logs a message at the error level into the mosquitto logging subsystem.

ยงExamples

use mosquitto_plugin::mosquitto_error;

let client_id: Option<&str> = None;
mosquitto_error!("Failed acl check for client id {:?}", client_id);