zephyr::raw

Function z_log_msg_runtime_vcreate

Source
pub unsafe extern "C" fn z_log_msg_runtime_vcreate(
    domain_id: u8,
    source: *const c_void,
    level: u8,
    data: *const c_void,
    dlen: usize,
    package_flags: u32,
    fmt: *const u8,
    ap: u32,
)
Expand description

@brief Create message at runtime.

Function allows to build any log message based on input data. Processing time is significantly higher than statically message creating.

@param domain_id Domain ID.

@param source Source.

@param level Log level.

@param data Data.

@param dlen Data length.

@param package_flags Package flags.

@param fmt String.

@param ap Variable list of string arguments.