Function
EDataServerutil_debug_print
since: 3.30
Declaration [src]
void
e_util_debug_print (
const gchar* domain,
const gchar* format,
...
)
Description [src]
Prints a text according to format and its arguments to stdout
prefixed with domain in brackets [] and the current date and time.
This function doesn’t check whether the logging is enabled, it’s up
to the caller to determine it, the function only prints the information
in a consistent format:
[domain] YYYY-MM-DD hh:mm:ss.ms - format
See: e_util_debug_printv().
Available since: 3.30
This function is not directly available to language bindings.
Parameters
domain-
Type:
const gchar*A debug domain.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. format-
Type:
const gchar*A printf-like format.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. ...-
Type:
Arguments for the
format.