Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ngerakines/syslognif
A small nif to tap into syslog from an Erlang node.
https://github.com/ngerakines/syslognif
Last synced: about 1 month ago
JSON representation
A small nif to tap into syslog from an Erlang node.
- Host: GitHub
- URL: https://github.com/ngerakines/syslognif
- Owner: ngerakines
- Created: 2010-03-17T03:04:19.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-03-18T21:23:27.000Z (almost 15 years ago)
- Last Synced: 2024-05-01T13:43:40.417Z (8 months ago)
- Language: Erlang
- Homepage:
- Size: 94.7 KB
- Stars: 10
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
A small nif to write to the local syslog daemon inspired by the project [JacobVorreuter/erlang_syslog](http://github.com/JacobVorreuter/erlang_syslog). Patches wanted.
# TODO
* openlog options
* tests# Usage
Easier than you think:
$ erl -pa /path/to/syslognif/ebin
1> syslog:open("foo").
ok
2> syslog:write(3, "This is a dead parrot!").
ok
3> syslog:close().
ok