From a007825dcad1af559c35d6d78490f21ff9edf4b9 Mon Sep 17 00:00:00 2001 From: Tobias Herber <22559657+herber@users.noreply.github.com> Date: Wed, 31 Dec 2025 16:28:40 +0100 Subject: [PATCH] Fix temp logs --- service/src/services/workflowRun.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/service/src/services/workflowRun.ts b/service/src/services/workflowRun.ts index edb125a..8c0934f 100644 --- a/service/src/services/workflowRun.ts +++ b/service/src/services/workflowRun.ts @@ -171,7 +171,6 @@ class workflowRunServiceImpl { return array .map(line => { - console.log('LINE:', line); if (!line.startsWith('[')) return undefined!; let [ts, message] = JSON.parse(line); @@ -208,7 +207,7 @@ class workflowRunServiceImpl { return { step, - logs: this.presentOutput(tempOutputs.map(o => o.output)), + logs: this.presentOutput(tempOutputs.flatMap(o => o.output.split('\n'))), source: 'temp' as const }; })