# File lib/new_relic/control/instrumentation.rb, line 16
      def load_instrumentation_files pattern
        Dir.glob(pattern) do |file|
          begin
            require file.to_s
          rescue => e
            ::NewRelic::Agent.logger.warn "Error loading instrumentation file '#{file}':", e
          end
        end
      end