class NewRelic::Agent::NullLogger

Public Instance Methods

debug(*args) click to toggle source
# File lib/new_relic/agent/null_logger.rb, line 18
def debug(*args); end
error(*args) click to toggle source
# File lib/new_relic/agent/null_logger.rb, line 12
def error(*args); end
fatal(*args) click to toggle source
# File lib/new_relic/agent/null_logger.rb, line 10
def fatal(*args); end
info(*args) click to toggle source
# File lib/new_relic/agent/null_logger.rb, line 16
def info(*args); end
method_missing(method, *args, &blk) click to toggle source
# File lib/new_relic/agent/null_logger.rb, line 20
def method_missing(method, *args, &blk)
  nil
end
warn(*args) click to toggle source
# File lib/new_relic/agent/null_logger.rb, line 14
def warn(*args); end