From f0d4eb8ee54df0a43a5aa5317f776ca05bfe2229 Mon Sep 17 00:00:00 2001 From: "reportportal.io" Date: Tue, 18 Nov 2025 13:34:46 +0000 Subject: [PATCH 1/3] 5.5.6 -> 5.5.7-SNAPSHOT --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 8c448af..61d22b3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.5.6 +5.5.7-SNAPSHOT From 92969cbb25a07692364ebd343d0f4a3104811387 Mon Sep 17 00:00:00 2001 From: Ilya_Hancharyk Date: Tue, 9 Dec 2025 12:15:39 +0300 Subject: [PATCH 2/3] Improve startLaunch logging --- lib/report-portal-client.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/report-portal-client.js b/lib/report-portal-client.js index 9869cf4..cd43786 100644 --- a/lib/report-portal-client.js +++ b/lib/report-portal-client.js @@ -196,6 +196,7 @@ class RPClient { const tempId = this.getUniqId(); if (launchDataRQ.id) { + this.logDebug(`Use existing launch with tempId ${tempId}`, launchDataRQ); this.map[tempId] = this.getNewItemObj((resolve) => resolve(launchDataRQ)); this.map[tempId].realId = launchDataRQ.id; this.launchUuid = launchDataRQ.id; @@ -213,7 +214,7 @@ class RPClient { this.map[tempId] = this.getNewItemObj((resolve, reject) => { const url = 'launch'; - this.logDebug(`Start launch with tempId ${tempId}`, launchDataRQ); + this.logDebug(`Start launch with tempId ${tempId}`, launchData); this.restClient.create(url, launchData).then( (response) => { this.map[tempId].realId = response.id; From 1f458b0fa76b40934bea556422339be9ddff9ab6 Mon Sep 17 00:00:00 2001 From: Ilya_Hancharyk Date: Tue, 9 Dec 2025 12:16:42 +0300 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08148c8..a302983 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +### Changed +- Launch start debug logging improved. ## [5.5.6] - 2025-11-18 ### Security