1TICKIT_DEBUG_LOGF(3) Library Functions Manual TICKIT_DEBUG_LOGF(3)
2
3
4
6 tickit_debug_logf, tickit_debug_vlogf - emit debugging log messages
7
9 #include <tickit.h>
10
11 void tickit_debug_logf(const char *flag,
12 const char *fmt, ...);
13 void tickit_debug_vlogf(const char *flag,
14 const char *fmt, va_list args);
15
16 Link with -ltickit.
17
19 tickit_debug_logf() emits a debug logging message, by creating a string
20 using the given format string and argument list in the style of
21 sprintf(3). If the requested message flag is enabled, this will be
22 appended to the log output along with a timestamp and the name of the
23 flag itself.
24
25 tickit_debug_vlogf() works analogously, except that it takes a single
26 va_list for the arguments to format.
27
29 These functions return no value.
30
32 tickit_debug(7), tickit(7)
33
34
35
36 TICKIT_DEBUG_LOGF(3)