gobj_info_msg()

gobj_info_msg()#

gobj_info_msg() logs an informational message with a formatted string and optional arguments.

Prototype

void gobj_info_msg(
    hgobj gobj,
    const char *fmt,
    ...
);

Parameters

Key

Type

Description

gobj

hgobj

The object generating the log message.

fmt

const char *

The format string for the log message.

...

variadic

Additional arguments for the format string.


Return Value

This function does not return a value.

Notes

The log message is formatted using vsnprintf() and logged with priority LOG_INFO.

Prototype

// Not applicable in JS

Prototype

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