summaryrefslogtreecommitdiff
path: root/log.c
blob: 12898f4948e32b8a78f2f2d354c7c278ce3a3f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include "log.h"
#include "misc.h"

void vprintlog(log_output output_type, int priority, const char *fmt, va_list args) {
	char *buf = calloc(vformat_len_copy(fmt, args)+1, sizeof(char));
	vsprintf(buf, fmt, args);

	switch (output_type) {
		case LOG_OUT_SYSLOG: {
			syslog(priority, "%s", buf);
			break;
		}
		case LOG_OUT_STDERR:
		case LOG_OUT_STDOUT: {
			FILE *output = (output_type == LOG_OUT_STDOUT) ? stdout : stderr;
			fprintf(output, "%s\n", buf);
			break;
		}
		default:
			break;
	}
	free(buf);
}