-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.cpp
95 lines (73 loc) · 2.88 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
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
///////////////////////////////////////////////////////////////////////////////
// includes
///////////////////////////////////////////////////////////////////////////////
#include "log.h"
#include <stdio.h>
///////////////////////////////////////////////////////////////////////////////
// macros
///////////////////////////////////////////////////////////////////////////////
#define LOG_MESSAGE_LENGTH_MAX (255)
///////////////////////////////////////////////////////////////////////////////
// type defintions
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// constants
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// module variables
///////////////////////////////////////////////////////////////////////////////
LogInstance::LogLevel LogInstance::g_level = LOG_LEVEL_INFO;
///////////////////////////////////////////////////////////////////////////////
// private function declarations
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// public function implementations
///////////////////////////////////////////////////////////////////////////////
LogInstance::LogInstance(const char *name_p)
: m_logptr(log4cxx::Logger::getLogger(name_p))
{
}
LogInstance::~LogInstance()
{
}
void LogInstance::set_global_level(LogLevel level)
{
g_level = level;
}
///////////////////////////////////////////////////////////////////////////////
// private function implementations
///////////////////////////////////////////////////////////////////////////////
void LogInstance::generate_internal(LogLevel level, const char *format_p, va_list va)
{
// generate the log text
char message[LOG_MESSAGE_LENGTH_MAX + 1];
vsnprintf(message, sizeof(message), format_p, va);
// output to the log4xx layer
switch (level)
{
case LOG_LEVEL_INFO:
LOG4CXX_INFO(m_logptr, message);
break;
case LOG_LEVEL_WARNING:
LOG4CXX_WARN(m_logptr, message);
break;
case LOG_LEVEL_DEBUG:
LOG4CXX_DEBUG(m_logptr, message);
break;
case LOG_LEVEL_TRACE:
LOG4CXX_DEBUG(m_logptr, message);
break;
case LOG_LEVEL_ERROR:
LOG4CXX_ERROR(m_logptr, message);
break;
case LOG_LEVEL_WTF:
LOG4CXX_FATAL(m_logptr, message);
break;
default:
// should never happen
return;
}
}
///////////////////////////////////////////////////////////////////////////////
// private function implementations
///////////////////////////////////////////////////////////////////////////////