# File lib/fluent/formatter.rb, line 92 def configure(conf) super @formatter = Plugin.new_formatter(@output_type) @formatter.configure(conf) end
# File lib/fluent/formatter.rb, line 99 def format(tag, time, record) header = "#{Time.now.localtime} #{tag}: " "#{header}#{@formatter.format(tag, time, record)}" end