-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLogger.cpp
173 lines (150 loc) · 4.18 KB
/
Logger.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
* Logger.cpp
*
* Logger to output formatted messages to the serial bus (monitoring / debugging)
*
Copyright (c) 2020 Michael Neuweiler
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "Logger.h"
Logger logger;
Logger::Logger() {
logLevel = LogLevel::Info;
debugging = (Logger::logLevel == Debug);
msgBuffer = new char[LOG_BUFFER_SIZE];
Serial.begin(115200);
}
/*
* Output a debug message with a variable amount of parameters.
* printf() style, see Logger::log()
*
*/
void Logger::debug(String message, ...) {
if (logLevel > Debug) {
return;
}
va_list args;
va_start(args, message);
Logger::log(Debug, message, args);
va_end(args);
}
/*
* Output a info message with a variable amount of parameters
* printf() style, see Logger::log()
*/
void Logger::info(String message, ...) {
if (logLevel > Info) {
return;
}
va_list args;
va_start(args, message);
Logger::log(Info, message, args);
va_end(args);
}
/*
* Output a warning message with a variable amount of parameters
* printf() style, see Logger::log()
*/
void Logger::warn(String message, ...) {
if (logLevel > Warn) {
return;
}
va_list args;
va_start(args, message);
Logger::log(Warn, message, args);
va_end(args);
}
/*
* Output a error message with a variable amount of parameters
* printf() style, see Logger::log()
*/
void Logger::error(String message, ...) {
if (logLevel > Error) {
return;
}
va_list args;
va_start(args, message);
Logger::log(Error, message, args);
va_end(args);
}
/*
* Output a comnsole message with a variable amount of parameters
* printf() style, see Logger::logMessage()
*/
void Logger::console(String message, ...) {
va_list args;
va_start(args, message);
vsnprintf(msgBuffer, LOG_BUFFER_SIZE, message.c_str(), args);
Serial.println(msgBuffer);
va_end(args);
}
/*
* Set the log level. Any output below the specified log level will be omitted.
* Also set the debugging flag for faster evaluation in isDebug().
*/
void Logger::setLoglevel(LogLevel level) {
logLevel = level;
debugging = (level == Debug);
}
/*
* Retrieve the current log level.
*/
Logger::LogLevel Logger::getLogLevel() {
return logLevel;
}
/*
* Returns if debug log level is enabled. This can be used in time critical
* situations to prevent unnecessary string concatenation (if the message won't
* be logged in the end).
*
* Example:
* if (Logger::isDebug()) {
* Logger::debug("current time: %d", millis());
* }
*/
boolean Logger::isDebug() {
return debugging;
}
/*
* Output a log message (called by debug(), info(), warn(), error(), console())
*
* Supports printf() syntax
*/
void Logger::log(LogLevel level, String format, va_list args) {
String logLevel = "DEBUG";
switch (level) {
case Info:
logLevel = "INFO";
break;
case Warn:
logLevel = "WARNING";
break;
case Error:
logLevel = "ERROR";
break;
default:
break;
}
vsnprintf(msgBuffer, LOG_BUFFER_SIZE, format.c_str(), args);
// print to serial USB
Serial.print(millis());
Serial.print(" - ");
Serial.print(logLevel);
Serial.print(": ");
Serial.println(msgBuffer);
}