Sha256: 2a88b2b35bf0bd831e3eea6c5f8e94acdfc33114ddfbb7347aea1ad357035c3d
Contents?: true
Size: 535 Bytes
Versions: 99
Compression:
Stored size: 535 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. # 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
99 entries across 99 versions & 2 rubygems