Sha256: abcd04be3aa890d3e837aa8994b836822c459c8985c61eafa172073e3513d6ef
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
# logging/remote-syslog logging/remote-syslog is a remote syslog appender for use with the Logging library. ![Travis CI Status](https://secure.travis-ci.org/BIAINC/logging-remote-syslog.png) ## Installation Add this line to your application's Gemfile: ``` gem 'logging-remote-syslog', :require => 'logging/remote-syslog' ``` And then execute: ``` $ bundle ``` Or install it yourself as: ``` $ gem install logging-remote-syslog ``` ## Options :ident - [String] The identity of the sender :syslog_server [String] - The syslog server :strip_colors [True|False] - Some loggers like shell colors, should we remove them? :facility [String] - Something like local6 ## Usage ``` require 'logging' require 'logging/remote-syslog' logger = Logging.logger['MyApp'] logger.add_appenders( Logging.appenders.remote_syslog(ident, syslog_server: syslog_host, port: syslog_port) ) logger.level = :info logger.info 'MyApp Message' ``` ## Tests ``` rake ``` ## Change Log 0.0.3 - Strip ANSI shell codes by default ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Write code and add _tests_ 4. Commit your changes (`git commit -am 'Added some feature'`) 5. Push to the branch (`git push origin my-new-feature`) 6. Create new Pull Request
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
logging-remote-syslog-0.0.3 | README.md |