lib/lumberjack/formatter/object_formatter.rb



# frozen_string_literal: true

module Lumberjack
  class Formatter
    # No-op formatter that just returns the object itself.
    class ObjectFormatter
      def call(obj)
        obj
      end
    end
  end
end