Function gstd::ext::debug

pub fn debug(data: &str) -> Result<(), Error>
Expand description

Add a data string to the debug log.

§Examples

use gcore::ext;

#[no_mangle]
extern "C" fn handle() {
    ext::debug("Hello, world!").expect("Unable to log");
}