Sha256: eca59489d7b51039158dc5b54201e63b8256782261a68cea06b44e4e8dc0864b
Contents?: true
Size: 445 Bytes
Versions: 7
Compression:
Stored size: 445 Bytes
Contents
# Copyright (c) 2013 AppNeta, Inc. # All rights reserved. module Oboe module Inst def self.load_instrumentation # Load the general instrumentation pattern = File.join(File.dirname(__FILE__), 'inst', '*.rb') Dir.glob(pattern) do |f| begin require f rescue => e Oboe.logger.error "[oboe/loading] Error loading instrumentation file '#{f}' : #{e}" end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems