From 24b9160b79aacd60507d1e451b7a2aca806ecf47 Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 30 Jul 2021 15:34:31 +0100 Subject: [PATCH] Removes new line from event printing --- src/Logging/TeamCity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Logging/TeamCity.php b/src/Logging/TeamCity.php index 2d0b3426..494aa8c8 100644 --- a/src/Logging/TeamCity.php +++ b/src/Logging/TeamCity.php @@ -168,7 +168,7 @@ final class TeamCity extends DefaultResultPrinter */ private function printEvent(string $eventName, array $params = []): void { - $this->write("\n##teamcity[{$eventName}"); + $this->write("##teamcity[{$eventName}"); if ($this->flowId !== 0) { $params['flowId'] = $this->flowId;