# File lib/lumberjack/formatter.rb, line 18
    def initialize
      @class_formatters = {}
      @_default_formatter = InspectFormatter.new
      add(Object, @_default_formatter)
      add(String, :string)
      add(Exception, :exception)
    end