lib/trace_location/generator/csv.rb in trace_location-0.9.1 vs lib/trace_location/generator/csv.rb in trace_location-0.9.2
- old
+ new
@@ -3,10 +3,10 @@
require 'csv'
module TraceLocation
module Generator
class Csv < Base # :nodoc:
- ATTRIBUTES = %w[id event path lineno caller_path caller_lineno method_str hierarchy].freeze
+ ATTRIBUTES = %w[id event path lineno caller_path caller_lineno owner_with_name hierarchy].freeze
def initialize(events, return_value, options)
super
@dest_dir = options.fetch(:dest_dir) { ::TraceLocation.config.dest_dir }
@file_path = File.join(@dest_dir, "trace_location-#{Time.now.strftime('%Y%m%d%H%m%s')}.csv")