# File lib/lumberjack/formatter/exception_formatter.rb, line 5
      def call(exception)
        message = "#{exception.class.name}: #{exception.message}"
        message << "#{Lumberjack::LINE_SEPARATOR}  #{exception.backtrace.join("#{Lumberjack::LINE_SEPARATOR}  ")}" if exception.backtrace
        message
      end