aboutsummaryrefslogtreecommitdiffstats
path: root/log.c
blob: f105ecd36cd245fa1e590123dea7c2ce49ad6756 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* log.c - Logging via syslog
 * copied from opennhrp
 *
 * Copyright (C) 2007 Timo Teräs <timo.teras@iki.fi>
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 or later as
 * published by the Free Software Foundation.
 *
 * See http://www.gnu.org/ for details.
 */

#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#include <stdarg.h>

#include "pingu.h"
#include "log.h"

void log_init(void)
{
	openlog("pingu", LOG_PERROR | LOG_PID, LOG_DAEMON);
}

void log_debug(const char *format, ...)
{
	va_list va;

	if (pingu_verbose) {
		va_start(va, format);
		vsyslog(LOG_DEBUG, format, va);
		va_end(va);
	}
}

void log_perror(const char *message)
{
	log_error("%s: %s", message, strerror(errno));
}

void log_error(const char *format, ...)
{
	va_list va;

	va_start(va, format);
	vsyslog(LOG_ERR, format, va);
	va_end(va);
}

void log_info(const char *format, ...)
{
	va_list va;

	va_start(va, format);
	vsyslog(LOG_INFO, format, va);
	va_end(va);
}