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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <time.h>
#include "log.h"
/*
* The minimum log level; set to one of L_* constants from log.h
*/
int min_log_level = 666;
/*
* 0: send output to stderr
* 1: send output to syslog LOG_LOCAL1 facility
*/
int use_syslog = 0;
/* Turn log level number to a printable string */
char *log_printable_level(int level)
{
switch(level)
{
case L_ERROR:
return "ERROR";
case L_WARNING:
return "WARNING";
case L_NOTICE:
return "NOTICE";
case L_INFO:
return "INFO";
case L_DEBUG:
return "DEBUG";
}
return "UNKNOWN";
}
void log_init(void)
{
if(use_syslog)
{
openlog("tuntox", LOG_PID, LOG_LOCAL1);
}
}
void log_close(void)
{
if(use_syslog)
{
closelog();
}
}
/* Output the log to the console */
void log_printf(int level, const char *fmt, ...)
{
va_list args;
char logfmt[2048];
char logtime[100];
char *level_str;
time_t rawtime;
struct tm *timeinfo;
if(level > min_log_level)
{
return;
}
if(!use_syslog)
{
time(&rawtime);
timeinfo = localtime(&rawtime);
strftime(logtime, 100, "%F %X", timeinfo);
level_str = log_printable_level(level);
if(fmt[strlen(fmt)-1] == '\n')
{
snprintf(logfmt, 2048, "%s: [%s]\t%s", logtime, level_str, fmt);
}
else
{
snprintf(logfmt, 2048, "%s: [%s]\t%s\n", logtime, level_str, fmt);
}
va_start(args, fmt);
vfprintf(stderr, logfmt, args);
va_end(args);
}
else
{
va_start(args, fmt);
vsyslog(LOG_MAKEPRI(LOG_LOCAL1, level), fmt, args);
va_end(args);
}
}
void log_test(void)
{
int i = 112;
char *x = "test";
log_printf(L_WARNING, "Testing");
log_printf(L_ERROR, "Number stodwadziesciatrzy: %d", 123);
d(beenthere);
dd(i);
dp(&i);
ds(x);
}
|