|
NAMEtickit_debug_logf, tickit_debug_vlogf - emit debugging log messagesSYNOPSIS#include <tickit.h> void tickit_debug_logf(const char *flag, const char *fmt, ...); void tickit_debug_vlogf(const char *flag, const char *fmt, va_list args); Link with -ltickit. DESCRIPTIONtickit_debug_logf() emits a debug logging message, by creating a string using the given format string and argument list in the style of sprintf(3). If the requested message flag is enabled, this will be appended to the log output along with a timestamp and the name of the flag itself.tickit_debug_vlogf() works analogously, except that it takes a single va_list for the arguments to format. RETURN VALUEThese functions return no value.SEE ALSOtickit_debug(7), tickit(7) Visit the GSP FreeBSD Man Page Interface. |