• Stars
    star
    10
  • Rank 1,750,389 (Top 36 %)
  • Language
    Crystal
  • License
    ISC License
  • Created over 5 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Adds syslog functionality to crystal via LibC bindings.

syslog.cr

Docs GitHub release Build Status

Adds syslog functionality to crystal via LibC bindings.

Installation

Add this to your application's shard.yml:

dependencies:
  syslog:
    github: chris-huxtable/syslog.cr

Usage

Requiring:

require "syslog"

Basic Usage:

Syslog.emergency("This is an emergency message")
Syslog.alert("This is an alert message")
Syslog.critical("This is a critical message")
Syslog.error("This is an error message")
Syslog.warning("This is a warning message")
Syslog.notice("This is a notice message")
Syslog.info("This is an info message")
Syslog.debug("This is a debug message")

Facility Usage:

Syslog.info("This is an info message sent to the LOCAL0 Facility", Syslog::Facility::Local0)

Contributing

  1. Fork it (https://github.com/chris-huxtable/syslog.cr/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors