kernel_dbg

Macro kernel_dbg 

Source
macro_rules! kernel_dbg {
    () => { ... };
    ($val:expr) => { ... };
    ($val:expr,) => { ... };
    ($($val:expr),+ $(,)?) => { ... };
}
Expand description

Macro for printing the value of a given expression for quick and dirty debugging.

Does not panic on failure to write - instead silently ignores errors.

See dbg! for full documentation.