Sha256: 516984965bebc7e3500d8bcd4f7a8d13a6dfdb02d6a39c0c1215157a5586a308
Contents?: true
Size: 1.64 KB
Versions: 2
Compression:
Stored size: 1.64 KB
Contents
# $Id: root_logger.rb 37 2007-10-26 19:12:44Z tim_pease $ require 'logging' require 'logging/logger' module Logging # The root logger exists to ensure that all loggers have a parent and a # defined logging level. If a logger is additive, eventually its log # events will propogate up to the root logger. # class RootLogger < Logger # undefine the methods that the root logger does not need %w(additive additive= parent parent=).each do |m| undef_method m.intern end # call-seq: # RootLogger.new # # Returns a new root logger instance. This method will be called only # once when the +Repository+ singleton instance is created. # def initialize( ) unless ::Logging.const_defined? 'MAX_LEVEL_LENGTH' ::Logging.define_levels %w(debug info warn error fatal) end @name = 'root' @appenders = [] @additive = false @trace = false self.level = 0 end # call-seq: # log <=> other # # Compares this logger by name to another logger. The normal return codes # for +String+ objects apply. # def <=>( other ) case other when self: 0 when ::Logging::Logger: -1 else raise ArgumentError, 'expecting a Logger instance' end end # call-seq: # level = :all # # Set the level for the root logger. The functionality of this method is # the same as +Logger#level=+, but setting the level to +nil+ for the # root logger is not allowed. The level is silently set to :all. # def level=( level ) level ||= 0 super end end # class RootLogger end # module Logging # EOF
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
logging-0.5.0 | lib/logging/root_logger.rb |
logging-0.5.1 | lib/logging/root_logger.rb |