module BarkingIguana::Logging::Helper::InstanceMethods

Public Instance Methods

inspect() click to toggle source
Calls superclass method
# File lib/barking_iguana/logging/helper.rb, line 13
def inspect
  s = super
  remove = Regexp.new(Regexp.escape("@logger=#{logger.inspect}"))
  s.gsub! /(?:, )#{remove}/, ''
  s
end
logger() click to toggle source
# File lib/barking_iguana/logging/helper.rb, line 9
def logger
  @logger ||= Logging.get_logger(self)
end