Skip to main content

flash_debug

Macro flash_debug 

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

Debug logging macro for flash subscription messages

Only prints in debug builds. Automatically prefixes with \[FLASH_DEBUG\].

§Example

let progress = 0.75;
flash_debug!("Progress: {:.1}%", progress * 100.0);