Sha256: 5605ab68b469cae9d836f56e5b8f2538878a67c74daca881fdbbeefe22e727c6

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

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

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