class Logging::Logger
Public Class Methods
new(name)
click to toggle source
# File lib/logging_adapter.rb, line 4 def initialize(name) @logger = ::Slf4r::LoggerFacade.new(name) end
Also aliased as: []
Public Instance Methods
method_missing(method, *args, &block)
click to toggle source
# File lib/logging_adapter.rb, line 12 def method_missing(method, *args, &block) @logger.send(method, *args, &block) if @logger.respond_to?(method) end
respend_to?(method)
click to toggle source
# File lib/logging_adapter.rb, line 16 def respend_to?(method) @logger.respond_to?(method) end