class Fluent::Formatter

Public Instance Methods

configure(conf) click to toggle source
Calls superclass method Fluent::Configurable#configure
# File lib/fluent/formatter.rb, line 24
def configure(conf)
  super
end
format(tag, time, record) click to toggle source
# File lib/fluent/formatter.rb, line 28
def format(tag, time, record)
  raise NotImplementedError, "Implement this method in child class"
end