[−][src]Macro log::info
Logs a message at the info level.
Examples
use log::info;
# fn main() {
# struct Connection { port: u32, speed: f32 }
let conn_info = Connection { port: 40, speed: 3.20 };
info!("Connected to port {} at {} Mb/s", conn_info.port, conn_info.speed);
info!(target: "connection_events", "Successfull connection, port: {}, speed: {}",
conn_info.port, conn_info.speed);
# }