Skip to content

Commit

Permalink
Renamed project name from ESP8266_Syslog to Syslog
Browse files Browse the repository at this point in the history
  • Loading branch information
arcao committed Jan 24, 2017
1 parent 66b2a1e commit 17023f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
An Arduino library for logging to Syslog server in [IETF format (RFC 5424)](https://tools.ietf.org/html/rfc5424) and
[BSD format (RFC 3164)](https://tools.ietf.org/html/rfc3164)

[![Build Status](https://travis-ci.org/arcao/ESP8266_Syslog.svg?branch=master)](https://travis-ci.org/arcao/ESP8266_Syslog)
[![Build Status](https://travis-ci.org/arcao/Syslog.svg?branch=master)](https://travis-ci.org/arcao/Syslog)

How to use, see [examples](https://github.com/arcao/ESP8266_Syslog/tree/master/examples).
How to use, see [examples](https://github.com/arcao/Syslog/tree/master/examples).

## Features
- Supports original syslog severity level and facility constants
- Supports both Syslog protocol formats: [IETF (RFC 5424)](https://tools.ietf.org/html/rfc5424) and
[BSD (RFC 3164)](https://tools.ietf.org/html/rfc3164)
- Supports `printf`-like formatting via `logf` methods (use `vsnprintf` method
inside)
- Supports fluent interface, see [AdvancedLogging](https://github.com/arcao/ESP8266_Syslog/blob/master/examples/AdvancedLogging/AdvancedLogging.ino)
- Supports fluent interface, see [AdvancedLogging](https://github.com/arcao/Syslog/blob/master/examples/AdvancedLogging/AdvancedLogging.ino)
example
- Allows to ignore sending specified severity levels with `logMask` function, see [AdvancedLogging](https://github.com/arcao/ESP8266_Syslog/blob/master/examples/AdvancedLogging/AdvancedLogging.ino)
- Allows to ignore sending specified severity levels with `logMask` function, see [AdvancedLogging](https://github.com/arcao/Syslog/blob/master/examples/AdvancedLogging/AdvancedLogging.ino)
example
- Independent on underlying network hardware. The network hardware library has
to implement methods of `UDP` astract class only.
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository":
{
"type": "git",
"url": "https://github.com/arcao/ESP8266_Syslog.git"
"url": "https://github.com/arcao/Syslog.git"
},
"version": "2.0.0",
"examples": "examples/*/*.ino",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ maintainer=Martin Sloup <[email protected]>
sentence=A library for logging to Syslog server over UDP protocol.
paragraph=Both IETF (RFC 5424) and BSD (RFC 3164) Syslog message formats are supported.
category=Communication
url=https://github.com/arcao/ESP8266_Syslog.git
url=https://github.com/arcao/Syslog.git
architectures=*
includes=Syslog.h

0 comments on commit 17023f8

Please sign in to comment.