macro_rules! g_critical { ($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::Critical
.
Example:
use glib::g_critical;
g_critical!("test", "test");
// Equivalent to:
use glib::{g_log, LogLevel};
g_log!("test", LogLevel::Critical, "test");
// trailing commas work as well:
g_critical!("test", "test",);
// You can also pass arguments like in format! or println!:
let x = 12;
g_critical!("test", "test: {}", x);
g_critical!("test", "test: {} {}", x, "a");
// trailing commas work as well:
g_critical!("test", "test: {} {}", x, "a",);