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 |
---|---|---|
|
|
The GObj instance associated with the log message. |
|
|
Logging options that control additional behavior such as stack tracing or exit conditions. |
|
|
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