rudionrails / yell-adapters-syslog

Syslog adapter for Yell
MIT License
3 stars 2 forks source link

Adapter options ignored in v2.0.1 #5

Closed mglubb closed 10 years ago

mglubb commented 10 years ago

It looks like in master there is a fix for symbol versus string access of adapter options here:

lib/yell/adapters/syslog.rb:52

Is it possible to get that released as a gem? Currently v2.0.1 doesn't pick up any options passed through as symbols in a yaml file. For example:

development:
  :format: '<%= Yell::ExtendedFormat %>'
  :level: 'gte.debug'
  :adapters:
    - :syslog:
        :facility: '<%= ::Syslog::LOG_USER %>'
        :ident: 'some-ident'
        :options:
          - :pid
          - :cons
rudionrails commented 10 years ago

Yea will look into it

rudionrails commented 10 years ago

Done. v2.0.2 is out.

mglubb commented 10 years ago

Brilliant. Thanks for the speedy response!