Function silc_log_output_debug
SYNOPSIS
void silc_log_output_debug(char *file, char *function,
int line, char *string);
DESCRIPTION
This is the main function for debug output. Please note that you should
rather use the wrapper macro SILC_LOG_DEBUG.
If you want to use it anyway, the `file', `function', and `line' are the
corresponding offsets in the source files, while `string' must be a
dynamic allocated (null-terminated) buffer.
|