gcore::ext

Function debug

Source
pub fn debug(data: &str)
Expand description

Add a data string to the debug log.

ยงExamples

use gcore::ext;

#[unsafe(no_mangle)]
extern "C" fn handle() {
    ext::debug("Hello, world!");
}