[−][src]Macro log::error
Logs a message at the error level.
Examples
ⓘThis code runs with edition 2018
use log::error; let (err_info, port) = ("No connection", 22); error!("Error: {} on port {}", err_info, port); error!(target: "app_events", "App Error: {}, Port: {}", err_info, 22);