module Quandl::Data::Logging

Public Instance Methods

to_csv() click to toggle source
Calls superclass method
# File lib/quandl/data/logging.rb, line 12
def to_csv
  t1 = Time.now
  r = super
  Quandl::Logger.debug("#{self.class.name}.to_csv (#{t1.elapsed_ms})")
  r
end
to_h() click to toggle source
Calls superclass method
# File lib/quandl/data/logging.rb, line 5
def to_h
  t1 = Time.now
  r = super
  Quandl::Logger.debug("#{self.class.name}.to_h (#{t1.elapsed_ms})")
  r
end