gobj_log_info()

gobj_log_info()#

Logs an informational message with optional formatting and arguments. The message is processed and sent to registered log handlers.

Prototype

void gobj_log_info(
    hgobj gobj,
    log_opt_t opt,
    ...
);

Parameters

Key

Type

Description

gobj

hgobj

The GObj instance associated with the log message.

opt

log_opt_t

Logging options that control additional behavior such as stack tracing or exit conditions.

...

variadic

Format string followed by optional arguments, similar to printf.


Return Value

This function does not return a value.

Notes

The function formats the message and sends it to all registered log handlers that accept informational messages. It uses _log_jnbf() internally to process the log entry.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples