macro_rules! log_abort { ($($arg:tt)*) => { ... }; }
Logs a message at the ERROR level and then aborts the process.
use sclog::log_abort; log_abort!("Unrecoverable error: {}", "security violation");