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

Prints an info-level message (level 6).

Use this level for informational messages.

Equivalent to the kernel’s pr_info macro.

Mimics the interface of std::print!. See core::fmt and alloc::format! for information about the formatting syntax.

Examples

pr_info!("hello {}\n", "there");