# File lib/new_relic/agent/error_collector.rb, line 245 def handle_deprecated_options(options) DEPRECATED_OPTIONS.each do |deprecated| if options.include?(deprecated) NewRelic::Agent.logger.warn(DEPRECATED_OPTIONS_MSG % deprecated) options.delete(deprecated) end end end