Macro uefi::println

source ·
macro_rules! println {
    () => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Prints to the standard output of the UEFI boot service console, but with a newline.

§Usage

Use this similar to println! from the Rust standard library, but only as long as boot services have not been exited.

You should never use this macro in a custom Logger (log::Log impl) to prevent a circular runtime dependency.

§Panics

Will panic if the system table’s stdout is not set, or if writing fails.

§Examples

println!();
println!("Hello World");
println!("Hello {}", "World");