class Lumberjack::Formatter::PrettyPrintFormatter

def call(obj)

def call(obj)
  s = StringIO.new
  PP.pp(obj, s)
  s.string.chomp
end