Sha256: 965794af0b7f70005c0848e1509c30bf6d67f231b2202d63a31daf32a972b252

Contents?: true

Size: 726 Bytes

Versions: 22

Compression:

Stored size: 726 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

require_relative 'logger/instrumentation'
require_relative 'logger/chain'
require_relative 'logger/prepend'

DependencyDetection.defer do
  named :logger

  depends_on do
    defined?(Logger) &&
      NewRelic::Agent.config[:'application_logging.enabled']
  end

  executes do
    NewRelic::Agent.logger.info('Installing Logger instrumentation')

    if use_prepend?
      prepend_instrument Logger, NewRelic::Agent::Instrumentation::Logger::Prepend
    else
      chain_instrument NewRelic::Agent::Instrumentation::Logger
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
newrelic_rpm-9.14.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.13.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.12.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.11.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.10.2 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.10.1 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.10.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.9.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.8.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.7.1 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.7.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.6.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.5.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.4.2 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.4.1 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.4.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.3.1 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.3.0 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.2.2 lib/new_relic/agent/instrumentation/logger.rb
newrelic_rpm-9.2.1 lib/new_relic/agent/instrumentation/logger.rb