Sha256: 609e0fa48804475d94fde7ebf5cc39ff67232b57ace606dfac3f0b7b4fcf82db

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 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
```

## 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.4 README.md