Skip to content

Commit c3c0180

Browse files
authored
Update README.md
1 parent 119b82a commit c3c0180

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
ArduinoLog - C++ Log library for Arduino devices
22
====================
33

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-
64
*An small Logging library for embedded systems.*
75

86
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
2018

2119
* All Arduino boards (Uno, Due, Mini, Micro, Yun...)
2220
* ESP8266
23-
## Downloading
2421

2522
## Downloading
2623

@@ -63,11 +60,12 @@ begin(int level, Print* logOutput)
6360
The loglevels available are
6461

6562
```
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
7169
```
7270

7371
example
@@ -119,11 +117,13 @@ examples
119117

120118
Based on library by
121119
* https://github.com/mrRobot62
120+
122121
Bugfixes & features by
123122
* https://github.com/rahuldeo2047
124123
* https://github.com/NOX73
125124
* https://github.com/dhylands
126125

126+
127127
## On using and modifying libraries
128128

129129
- [http://www.arduino.cc/en/Main/Libraries](http://www.arduino.cc/en/Main/Libraries)

0 commit comments

Comments
 (0)