build directory is shown as ./ in log output
It was shown as "/", which is irritating because it looks like root directory.
This commit is contained in:
parent
1c31b053e7
commit
ce280328af
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ class BuildDBLogHandler extends AbstractProcessingHandler
|
|||
protected function write(array $record)
|
||||
{
|
||||
$message = (string)$record['message'];
|
||||
$message = str_replace($this->build->currentBuildPath, '/', $message);
|
||||
$message = str_replace($this->build->currentBuildPath, './', $message);
|
||||
|
||||
$this->logValue .= $message . PHP_EOL;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue