class BatchKit::Logging::NullLogger

Implements a NULL logger, i.e. a logger that throws away log messages. This logger should be used when no logging is desired.

Public Class Methods

instance() click to toggle source
# File lib/batch-kit/logging/null_logger.rb, line 10
def self.instance
    @instance ||= self.new
end

Public Instance Methods

log_level=(level) click to toggle source
# File lib/batch-kit/logging/null_logger.rb, line 15
def log_level=(level)
end
log_msg(level, msg) click to toggle source
# File lib/batch-kit/logging/null_logger.rb, line 28
def log_msg(level, msg)
end