/**
  * @param BenchmarkReportInterface $report
  *
  * @return string
  */
 private function createLogFromReport(BenchmarkReportInterface $report)
 {
     $logs = $this->getLogLine($report->getSiteToBenchmark());
     foreach ($report->getSitesToCompare() as $site) {
         $logs .= $this->getLogLine($site);
     }
     return $logs;
 }