Skip to content

Commit

Permalink
StartupLogRenderer: Use correct syntax to write to array $lines
Browse files Browse the repository at this point in the history
  • Loading branch information
raviks789 committed Sep 1, 2023
1 parent c8407cd commit 1b692b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/Director/StartupLogRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ function ($matches) use ($severity, $self) {
}

if ($time === null) {
$lines[] .= $line;
$lines[] = $line;
} else {
$lines[] .= "[$time] $line";
$lines[] = "[$time] $line";
}
}
return implode("\n", $lines);
Expand Down

0 comments on commit 1b692b6

Please sign in to comment.