Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 436 Bytes

README.rdoc

File metadata and controls

13 lines (8 loc) · 436 Bytes

Lumberjack Syslog Device

This gem provides a logging device for the lumberjack gem that will log to syslog, the centralized system logging facility. See en.wikipedia.org/wiki/Syslog for more information on syslog.

Example Usage

require 'lumberjack_syslog_device'

device = Lumberjack::SyslogDevice.new
logger = Lumberjack::Logger.new(device)
logger.info("Write me to syslog!")

See SyslogDevice for more details.