Function std::logging::log

pub fn log<T>(value: T) 
Expand description

Log any stack type.

Additional Information

If the type is a reference type, log is used.
Otherwise logd is used.’

Arguments

  • value: [T] - The value to log.

Examples

fn foo() {
    log("Fuel is blazingly fast");
}