tickit_debug_logf, tickit_debug_vlogf - emit debugging log messages
Contents
Description
tickit_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.
Name
tickit_debug_logf, tickit_debug_vlogf - emit debugging log messages
Return Value
These functions return no value.
See Also
tickit_debug(7), tickit(7) TICKIT_DEBUG_LOGF(3)
Synopsis
#include<tickit.h>voidtickit_debug_logf(constchar*flag,constchar*fmt,...);voidtickit_debug_vlogf(constchar*flag,constchar*fmt,va_listargs);
Link with -ltickit.
