class Excon::StandardInstrumentor

Public Class Methods

instrument(name, params = {}) { || ... } click to toggle source
# File lib/excon/standard_instrumentor.rb, line 3
def self.instrument(name, params = {}, &block)
  params = params.dup

  # reduce duplication/noise of output
  params.delete(:connection)
  params.delete(:stack)

  if params.has_key?(:headers) && params[:headers].has_key?('Authorization')
    params[:headers] = params[:headers].dup
    params[:headers]['Authorization'] = REDACTED
  end

  if params.has_key?(:password)
    params[:password] = REDACTED
  end

  $stderr.puts(name)
  Excon::PrettyPrinter.pp($stderr, params)

  if block_given?
    yield
  end
end