class BarkingIguana::Logging::Logger

Attributes

raw_append_threshold[RW]

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/barking_iguana/logging/logger.rb, line 8
def initialize *args
  super
  self.raw_append_threshold = Logging.default_raw_append_threshold
end

Public Instance Methods

<<(*args) click to toggle source
Calls superclass method
# File lib/barking_iguana/logging/logger.rb, line 13
def << *args
  super if level <= raw_append_threshold
end