Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 398 Bytes

README.markdown

File metadata and controls

18 lines (13 loc) · 398 Bytes

A small nif to write to the local syslog daemon inspired by the project 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