summaryrefslogtreecommitdiffstats
path: root/worker/debug.c
blob: 6c653426c72abcffa7682e4f8387979d7187802a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* taken from Stephen's sssd tree */
#define _GNU_SOURCE
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>

int debug_level = 3;

void debug_fn(const char *format, ...)
{
    va_list ap;
    char *s = NULL;

    va_start(ap, format);
    vasprintf(&s, format, ap);
    va_end(ap);

    /*write(state.fd, s, strlen(s)); */
    fprintf(stderr, s);
    free(s);
}