lib/lumberjack/formatter/string_formatter.rb



# frozen_string_literal: true

module Lumberjack
  class Formatter
    # Format an object by calling `to_s` on it.
    class StringFormatter
      def call(obj)
        obj.to_s
      end
    end
  end
end