1
1
ArduinoLog - C++ Log library for Arduino devices
2
2
====================
3
3
4
- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/m7s53wav1l0abssg/branch/master?svg=true )] ( https://ci.appveyor.com/project/bblanchon/arduinojson/branch/master ) [ ![ Build Status] ( https://travis-ci.org/bblanchon/ArduinoJson.svg?branch=master )] ( https://travis-ci.org/bblanchon/ArduinoJson ) [ ![ Coverage Status] ( https://img.shields.io/coveralls/bblanchon/ArduinoJson.svg )] ( https://coveralls.io/r/bblanchon/ArduinoJson?branch=master ) [ ![ Star this project] ( http://githubbadges.com/star.svg?user=bblanchon&repo=ArduinoJson&style=flat&color=fff&background=007ec6 )] ( https://github.com/bblanchon/ArduinoJson )
5
-
6
4
* An small Logging library for embedded systems.*
7
5
8
6
It's designed to expose the main features of extensive logging libraries such as log4j, log4net & CocoaLumberjack, with a small footprint.
@@ -20,7 +18,6 @@ It's designed to expose the main features of extensive logging libraries such as
20
18
21
19
* All Arduino boards (Uno, Due, Mini, Micro, Yun...)
22
20
* ESP8266
23
- ## Downloading
24
21
25
22
## Downloading
26
23
@@ -63,11 +60,12 @@ begin(int level, Print* logOutput)
63
60
The loglevels available are
64
61
65
62
```
66
- * 0 - LOG_LEVEL_NONE no output
67
- * 1 - LOG_LEVEL_ERROR errors
68
- * 2 - LOG_LEVEL_INFO errors and info
69
- * 3 - LOG_LEVEL_DEBUG errors, info and debug
70
- * 4 - LOG_LEVEL_VERBOSE all
63
+ * 0 - LOG_LEVEL_SILENT no output
64
+ * 1 - LOG_LEVEL_FATAL fatal errors
65
+ * 2 - LOG_LEVEL_ERROR all errors
66
+ * 3 - LOG_LEVEL_WARNING errors, and warnings
67
+ * 4 - LOG_LEVEL_NOTICE errors, warnings and notices
68
+ * 5 - LOG_LEVEL_VERBOSE all
71
69
```
72
70
73
71
example
@@ -119,11 +117,13 @@ examples
119
117
120
118
Based on library by
121
119
* https://github.com/mrRobot62
120
+
122
121
Bugfixes & features by
123
122
* https://github.com/rahuldeo2047
124
123
* https://github.com/NOX73
125
124
* https://github.com/dhylands
126
125
126
+
127
127
## On using and modifying libraries
128
128
129
129
- [ http://www.arduino.cc/en/Main/Libraries ] ( http://www.arduino.cc/en/Main/Libraries )
0 commit comments