summaryrefslogtreecommitdiffstats
path: root/src/logging.c
blob: be03528d8489f96f24a0d9dc34eaeeb49ac37ccd (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "init.h"
#include "logging.h"

void
debug(const char *fmt, ...)
{
	va_list ap;

	printf("Debug: ");
	va_start(ap, fmt);
	vprintf(fmt, ap);
	va_end(ap);
	putchar('\n');
}

void
warn(const char *fmt, ...)
{
	va_list ap;

	printf("Warning: ");
	va_start(ap, fmt);
	vprintf(fmt, ap);
	va_end(ap);
	putchar('\n');
}

void
err(int status, const char *fmt, ...)
{
	va_list ap;

	printf("Error: ");
	va_start(ap, fmt);
	vprintf(fmt, ap);
	va_end(ap);
	putchar('\n');

	quit(status);
}