Exemplo n.º 1
0
// Keep this when we are building the sipcc library without it, so that we capture logging
int debugif_printf(const char *_format, ...) {
    va_list ap;
    va_start(ap, _format);
	CSFLogDebugV( logTag, _format, ap);
    va_end(ap);
	return 1;	// Fake a "happy" return value.
}
Exemplo n.º 2
0
int32_t
buginf (const char *_format, ...)
{
  va_list ap;

  va_start(ap, _format);
  CSFLogDebugV("cpr", _format, ap);
  va_end(ap);

  return (0);
}