os1::bootlog! [] [src]

macro_rules! bootlog {
    ($($arg:tt)*) => ({
        use ::core::fmt::Write;
        let _ = write!($crate::debug::Debug, $($arg)*);
    })
}

A macro for printing using format strings to the console when interrupts are not enabled