gobj_trace_msg()
#
Logs a debug-level message with formatted text. The function formats the message using printf
-style arguments and logs it with priority LOG_DEBUG
.
Prototype
void gobj_trace_msg(
hgobj gobj,
const char *fmt,
...
);
Parameters
Key |
Type |
Description |
---|---|---|
|
|
The GObj instance associated with the log message. |
|
|
The format string, similar to |
|
|
Additional arguments for the format string. |
Return Value
This function does not return a value.
Notes
Internally, trace_vjson()
is used to format and log the message.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples