# File lib/lumberjack/formatter/pretty_print_formatter.rb, line 18
      def call(obj)
        s = StringIO.new
        PP.pp(obj, s)
        s.string.chomp
      end