class Semlogr::NullLogger

Public Instance Methods

debug(template = nil, error: nil, **properties, &block) click to toggle source
# File lib/semlogr/null_logger.rb, line 25
def debug(template = nil, error: nil, **properties, &block)
end
debug?() click to toggle source
# File lib/semlogr/null_logger.rb, line 5
def debug?
  false
end
error(template = nil, error: nil, **properties, &block) click to toggle source
# File lib/semlogr/null_logger.rb, line 34
def error(template = nil, error: nil, **properties, &block)
end
error?() click to toggle source
# File lib/semlogr/null_logger.rb, line 17
def error?
  false
end
fatal(template = nil, error: nil, **properties, &block) click to toggle source
# File lib/semlogr/null_logger.rb, line 37
def fatal(template = nil, error: nil, **properties, &block)
end
fatal?() click to toggle source
# File lib/semlogr/null_logger.rb, line 21
def fatal?
  false
end
info(template = nil, error: nil, **properties, &block) click to toggle source
# File lib/semlogr/null_logger.rb, line 28
def info(template = nil, error: nil, **properties, &block)
end
info?() click to toggle source
# File lib/semlogr/null_logger.rb, line 9
def info?
  false
end
warn(template = nil, error: nil, **properties, &block) click to toggle source
# File lib/semlogr/null_logger.rb, line 31
def warn(template = nil, error: nil, **properties, &block)
end
warn?() click to toggle source
# File lib/semlogr/null_logger.rb, line 13
def warn?
  false
end
with_context(**_properties) click to toggle source
# File lib/semlogr/null_logger.rb, line 40
def with_context(**_properties)
  self
end