-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlog.cpp
61 lines (52 loc) · 1.54 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
57
58
59
60
/*
* 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>
#include <time.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)-1, fmt, ap);
va_end(ap);
strncat(msg, tn, sizeof(msg)-1);
msg[sizeof(tn)-1] = '\0';
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 {
struct timespec tp;
clock_gettime(CLOCK_MONOTONIC_COARSE, &tp);
fprintf(stderr, "[%ld.%03ld]%s", (long)tp.tv_sec, (long)tp.tv_nsec / 1000000L, msg);
}
}
strncpy(msg, "", sizeof(msg));
}