module Leafy::Logger::AppenderFactory

Public Instance Methods

attributes() click to toggle source
# File leafy-logger/lib/leafy/logger/appender_factories.rb, line 14
def attributes
  self.methods.select { |m| m.to_s =~ /^set_/ }.collect { |m| m.to_s.sub( /^set_/, '' ) }
end
threshold() click to toggle source
Calls superclass method
# File leafy-logger/lib/leafy/logger/appender_factories.rb, line 6
def threshold
  super.to_s
end
threshold=(t) click to toggle source
Calls superclass method
# File leafy-logger/lib/leafy/logger/appender_factories.rb, line 10
def threshold= t
  super Java::ChQosLogbackClassic::Level.const_get( t.to_s.upcase )
end