class Bricolage::NullLogger

Public Instance Methods

debug(*args) click to toggle source
# File lib/bricolage/logger.rb, line 73
def debug(*args) end
debug?() click to toggle source
# File lib/bricolage/logger.rb, line 74
def debug?() false end
elapsed_time(*args) { |end| ... } click to toggle source
# File lib/bricolage/logger.rb, line 83
  def elapsed_time(*args) yield end
  def level() Logger::ERROR end
  def level=(l) l end
end
error(*args) click to toggle source
# File lib/bricolage/logger.rb, line 79
def error(*args) end
error?() click to toggle source
# File lib/bricolage/logger.rb, line 80
def error?() false end
exception(*args) click to toggle source
# File lib/bricolage/logger.rb, line 81
def exception(*args) end
info(*args) click to toggle source
# File lib/bricolage/logger.rb, line 75
def info(*args) end
info?() click to toggle source
# File lib/bricolage/logger.rb, line 76
def info?() false end
level() click to toggle source
# File lib/bricolage/logger.rb, line 84
def level() Logger::ERROR end
level=(l) click to toggle source
# File lib/bricolage/logger.rb, line 85
def level=(l) l end
warn(*args) click to toggle source
# File lib/bricolage/logger.rb, line 77
def warn(*args) end
warn?() click to toggle source
# File lib/bricolage/logger.rb, line 78
def warn?() false end
with_elapsed_time(*args) { |end| ... } click to toggle source
# File lib/bricolage/logger.rb, line 82
    def with_elapsed_time(*args) yield end
    def elapsed_time(*args) yield end
    def level() Logger::ERROR end
    def level=(l) l end
  end

end