forked from logrotate/logrotate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.c
131 lines (111 loc) · 2.05 KB
/
log.c
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <unistd.h>
#ifdef HAVE_VSYSLOG
#include <syslog.h>
#endif
#include "log.h"
int logLevel = MESS_DEBUG;
static FILE *errorFile = NULL;
static FILE *messageFile = NULL;
static int _logToSyslog = 0;
int flags = 0;
void logSetLevel(int level)
{
logLevel = level;
}
void logSetErrorFile(FILE * f)
{
errorFile = f;
}
void logSetMessageFile(FILE * f)
{
messageFile = f;
}
void logToSyslog(int enable) {
_logToSyslog = enable;
#ifdef HAVE_VSYSLOG
if (_logToSyslog) {
openlog("logrotate", 0, LOG_USER);
}
else {
closelog();
}
#endif
}
void logSetFlags(int newFlags)
{
flags |= newFlags;
}
void logClearFlags(int newFlags)
{
flags &= ~newFlags;
}
static void log_once(FILE *where, int level, char *format, va_list args)
{
int showTime = 0;
switch (level) {
case MESS_DEBUG:
showTime = 1;
break;
case MESS_NORMAL:
case MESS_VERBOSE:
break;
default:
if (flags & LOG_TIMES)
fprintf(where, "%ld: ", (long) time(NULL));
fprintf(where, "error: ");
break;
}
if (showTime && (flags & LOG_TIMES)) {
fprintf(where, "%ld:", (long) time(NULL));
}
vfprintf(where, format, args);
fflush(where);
}
void message(int level, char *format, ...)
{
va_list args;
if (level >= logLevel) {
va_start(args, format);
log_once(stderr, level, format, args);
va_end(args);
}
if (messageFile != NULL) {
va_start(args, format);
log_once(messageFile, level, format, args);
va_end(args);
}
#ifdef HAVE_VSYSLOG
if (_logToSyslog) {
int priority = LOG_USER;
switch(level) {
case MESS_REALDEBUG:
priority |= LOG_DEBUG;
break;
case MESS_DEBUG:
case MESS_VERBOSE:
case MESS_NORMAL:
priority |= LOG_INFO;
break;
case MESS_ERROR:
priority |= LOG_ERR;
break;
case MESS_FATAL:
priority |= LOG_CRIT;
break;
default:
priority |= LOG_INFO;
break;
};
va_start(args, format);
vsyslog(priority, format, args);
va_end(args);
}
#endif
if (level == MESS_FATAL)
exit(1);
}