build = $build; // We want to add to any existing saved log information. $this->logValue = $build->getLog(); } /** * Write a log entry to the build log. * @param array $record */ protected function write(array $record) { $message = (string)$record['message']; $message = str_replace($this->build->currentBuildPath, '/', $message); $this->logValue .= $message . PHP_EOL; $this->build->setLog($this->logValue); Factory::getStore('Build')->save($this->build); } }