Macro glib::g_info [−][src]
macro_rules! g_info { ($log_domain:expr, $format:literal, $($arg:expr),* $(,)?) => { ... }; ($log_domain:expr, $format:literal $(,)?) => { ... }; }
Expand description
Macro used to log using GLib logging system. It uses g_log.
It is the same as calling the g_log!
macro with LogLevel::Info
.
Example:
use glib::g_info; g_info!("test", "test"); // Equivalent to: use glib::{g_log, LogLevel}; g_log!("test", LogLevel::Info, "test"); // trailing commas work as well: g_info!("test", "test",); // You can also pass arguments like in format! or println!: let x = 12; g_info!("test", "test: {}", x); g_info!("test", "test: {} {}", x, "a"); // trailing commas work as well: g_info!("test", "test: {} {}", x, "a",);