Function rustlogger_log

Source
#[unsafe(no_mangle)]
pub unsafe extern "C-unwind" fn rustlogger_log(
    level: LogLevel,
    file_name: *const c_char,
    fn_name: *const c_char,
    line: i32,
    format: *const c_char,
    args: VaList<'_>,
)
Expand description

Log to Rust’s log::logger().

§Safety

Pointer args must be safely dereferenceable. format and args must follow the rules of sprintf(3).