Codebase list vdr-plugin-xineliboutput / upstream/1.0.7+cvs20120623.0945 logdefs.c
upstream/1.0.7+cvs20120623.0945

Tree @upstream/1.0.7+cvs20120623.0945 (Download .tar.gz)

logdefs.c @upstream/1.0.7+cvs20120623.0945raw · history · blame

/*
 * logdefs.c: Logging and debug output
 *
 * See the main source file 'xineliboutput.c' for copyright information and
 * how to reach the author.
 *
 * $Id: logdefs.c,v 1.3 2010/07/19 13:39:24 phintuka Exp $
 *
 */

#include "logdefs.h"

#include <stdio.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <stdarg.h>

#if !defined(__APPLE__) && !defined(__FreeBSD__)
#  include <linux/unistd.h> /* syscall(__NR_gettid) */
#endif

/* next symbol is dynamically linked from input plugin */
int LogToSysLog __attribute__((visibility("default"))) = 1; /* log to syslog instead of console */

void x_syslog(int level, const char *module, const char *fmt, ...)
{ 
  va_list argp;
  char buf[512];

  va_start(argp, fmt);
  vsnprintf(buf, 512, fmt, argp);
  buf[sizeof(buf)-1] = 0;

#if !defined(__APPLE__) && !defined(__FreeBSD__)
  if(!LogToSysLog) {
    fprintf(stderr,"[%ld] %s%s\n", (long int)syscall(__NR_gettid), module, buf);
  } else {
    syslog(level, "[%ld] %s%s", (long int)syscall(__NR_gettid), module, buf);
  }
#else
  if(!LogToSysLog) {
    fprintf(stderr, "%s%s\n", module, buf);
  } else {
    syslog(level, "%s%s", module, buf);
  }
#endif

  va_end(argp);
}