Sha256: 23d524ec6354c77c489ba9b2bb74792877d6826a24773341f2c3948d34752923
Contents?: true
Size: 563 Bytes
Versions: 32
Compression:
Stored size: 563 Bytes
Contents
# This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true # A stub object that we can use in place of a real Logger instance when # the agent is disabled. module NewRelic module Agent class NullLogger def fatal(*args); end def error(*args); end def warn(*args); end def info(*args); end def debug(*args); end def method_missing(method, *args, &blk) nil end end end end
Version data entries
32 entries across 32 versions & 1 rubygems