-
Notifications
You must be signed in to change notification settings - Fork 2
/
log.cpp
57 lines (48 loc) · 1.37 KB
/
log.cpp
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
/*
* satip: logging
*
* Copyright (C) 2014 [email protected]
* [copy of vtuner by Honza Petrous]
* Copyright (C) 2010-11 Honza Petrous <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation version 2.
*
* This program is distributed WITHOUT ANY WARRANTY of any
* kind, whether express or implied; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#include <stdarg.h>
#define MAX_MSGSIZE 1024
#include "log.h"
__thread char msg[MAX_MSGSIZE];
void write_message(const unsigned int mtype, const int level, const char* fmt, ... ) {
if( !(mtype & dbg_mask ) )
return;
if( level <= dbg_level ) {
char tn[MAX_MSGSIZE];
va_list ap;
va_start(ap, fmt);
vsnprintf(tn, sizeof(tn), fmt, ap);
va_end(ap);
strncat(msg, tn, sizeof(msg));
if(use_syslog) {
int priority;
switch(level) {
case 1: priority=LOG_ERR; break;
case 2: priority=LOG_WARNING; break;
case 3: priority=LOG_INFO; break;
default: priority=LOG_DEBUG; break;
}
syslog(priority, "%s", msg);
} else {
fprintf(stderr, "%s", msg);
}
}
strncpy(msg, "", sizeof(msg));
}