# File httpd/lib/symbiosis/apache_logger.rb, line 183
  def receive_data(data)
    (@buff = "") << data
    @buff.split($/).each do |l|
      # Don't log empty lines
      next if l.empty?
      receive_line(l)
    end
  end